Formatting

This commit is contained in:
Maximilian 2022-10-20 20:08:29 -05:00
parent 3aadb40b5c
commit df8e8f0426
2 changed files with 4 additions and 4 deletions

View File

@ -3,9 +3,9 @@
{{ define "content" }}
<form action="/login-handle" method="post">
<label for="username">Username:</label><br>
<input type="text" id="username" name="username" value="John"><br><br>
<input id="username" name="username" type="text" value="John"><br><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br><br>
<input id="password" name="password" type="password"><br><br>
<input type="submit" value="Submit">
</form>
{{ end }}

View File

@ -3,9 +3,9 @@
{{ define "content" }}
<form action="/register-handle" method="post">
<label for="username">Username:</label><br>
<input type="text" id="username" name="username" value="John"><br><br>
<input id="username" name="username" type="text" value="John"><br><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br><br>
<input id="password" name="password" type="password"><br><br>
<input type="submit" value="Submit">
</form>
{{ end }}