all repos — auth-boilerplate @ d9c78a5c5d146159e794e6e265b69320bd05653b

A simple Go web-app boilerplate.

templates/reset_password.html (view raw)

 1<!DOCTYPE html>
 2<html>
 3<head>
 4    <title>Reset Password</title>
 5</head>
 6<body>
 7    <h1>Reset Password</h1>
 8    <form method="post" action="/reset-password">
 9        <label>Email: <input type="email" name="email"></label><br>
10        <input type="submit" value="Reset Password">
11    </form>
12    <a href="/register">Sign up</a>
13    <a href="/login">Login</a>
14</body>
15</html>