all repos — auth-boilerplate @ 16d9372b47e836a365f88331d564d1ac0cf8c25f

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>
16            <span>Email:</span>
17            <input type="email" name="email" placeholder="Email" required>
18        </label>
19        <input type="submit" value="Reset password">
20    </form>
21    <a href="/register">Sign up</a>
22    <a href="/login">Login</a>
23</body>
24
25</html>