Simplest-auth-with-go

It's a learning project. To run it, navigate to a folder in your console. Then type to start the server:

go run main.go

Then go to http://localhost:5000/sign-up-form

You should see the following:


image


You can also change the listening server in main.go:

func main() {
    http.HandleFunc("/", userHandler)
	  http.ListenAndServe("YourServer:Port", nil)
}