webserver-framework/files/finalise.html
2022-11-12 22:19:27 +02:00

30 lines
682 B
HTML

<!--
Placeholder file
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Finalise Account</title>
</head>
<body>
<div class="main-container">
<h2>Finalise account registration</h2>
<form action="/api/register/finalise" method="post">
<label for="username">Username (required): </label>
<input id="username" name="username" type="text" autocomplete="off" required><br />
<label for="password">Password (not required): </label>
<input id="password" name="password" type="password"><br />
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>