jsbin/views/account.html
Remy Sharp 80462b2dd4 Tidy up accounts. Serialise/deserialise not ok
Still needs some work to get the syncing working. Got a feeling I might have to delete the code, re-plan and do it again (because there's a number of different ways it can happen).
2014-03-01 00:12:25 +00:00

19 lines
652 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Update your account details</title>
</head>
<body>
<form action="{{action}}" method="post">
<label for="field-email">New Password</label>
<input id="field-email" type="email" name="email" value="{{email}}" />
<label for="field-password">New Password</label>
<input id="field-password" type="key" name="key" />
<input type="hidden" name="_csrf" value="{{csrf}}" />
<input type="hidden" name="_redirect" value="home" />
<button type="submit">Update Details</button>
</form>
</body>
<!-- TODO decide if this is used -->
</html>