soyuz-web/templates/settings.spy
2023-03-12 15:02:39 +11:00

22 lines
726 B
Plaintext

<< partials/head >>
<body>
<header>
<a class="action-button" href="/">Home</a> |
<a class="action-button" href="/help">Help</a>
</header>
<main id="settings">
<form method="post">
<section>
<label for="password">Reset password:</label><br/>
<input class="password-reset" type="password" name="password" id="password">
<input type="submit" name="logout" value="Reset Password" formaction="/reset-password">
</section>
<section>
<input type="submit" name="logout" value="Log Out" formaction="/logout">
</section>
</form>
</main>
<footer></footer>
</body>
</html>