all repos — auth-boilerplate @ 52392195bbed8dbcca7e080b528a7b8c798682af

A simple Go web-app boilerplate.

templates/reset_password.html (view raw)

 1<!DOCTYPE html>
 2<html lang="en">
 3
 4<head>
 5    <meta charset="UTF-8">
 6    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 7    <title>Reset password</title>
 8    <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
 9    <link rel="stylesheet" href="/static/style.css">
10</head>
11
12<body>
13    <h1>Reset Password</h1>
14    <form method="post" action="/reset-password">
15        <label>Email: <input type="email" name="email" required></label><br>
16        <input type="submit" value="Reset Password">
17    </form>
18    <a href="/register">Sign up</a>
19    <a href="/login">Login</a>
20</body>
21
22</html>