This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"database/sql" | |
"fmt" | |
"log" | |
_ "github.com/go-sql-driver/mysql" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Chi-like syntactic sugar layer on top of stdlib http.ServeMux. | |
package main | |
import ( | |
"net/http" | |
"slices" | |
) | |
type ( | |
middleware func(http.Handler) http.Handler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="form-signin" name="signUpForm" id="signUpForm" action="" method="POST" novalidate> | |
<div class="third-party-signups"> | |
<a class="button google-branded-button j-third-party t-google-signup" href="#"> | |
<span class="google-branded-button-icon"> | |
<img src="./assets/img/svg/google-icon.svg" alt="Google Icon" /> | |
</span> | |
<span class="branded-button-text google-branded-button-text">Sign Up with Google</span> | |
</a> | |
</div> | |
<div class="or-seperator"><b>or</b></div> |