all repos — auth-boilerplate @ b30162a9cd5be5a02eeb8a33bbe54b02dd03f8a3

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="/login">Login</a>
13</body>
14</html>