Download this file
| 1 | {{define "content"}} |
| 2 | <h1>Sign in</h1> |
| 3 | {{with .Content}} |
| 4 | {{if .Error}}<p data-error>{{.Error}}</p>{{end}} |
| 5 | <form method="post" action="/signin"> |
| 6 | <input type="hidden" name="return_to" value="{{.ReturnTo}}"> |
| 7 | <label>Email <input type="email" name="email" value="{{.Email}}" required autocomplete="username"></label> |
| 8 | <label>Password <input type="password" name="password" required autocomplete="current-password"></label> |
| 9 | <button type="submit">Sign in</button> |
| 10 | </form> |
| 11 | {{end}} |
| 12 | <p>Holding an invitation link? Open it instead — it carries the token that admits you.</p> |
| 13 | {{end}} |
| 14 | |