mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-18 23:41:17 -04:00
24 lines
No EOL
778 B
Text
24 lines
No EOL
778 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
<form action="/auth/register" method="post">
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username">
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password">
|
|
<label for="password-confirmation">Password Confirmation</label>
|
|
<input type="password-confirmation" name="password-confirmation" id="password-confirmation">
|
|
<label for="email">Email</label>
|
|
<input type="email" name="email" id="email">
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</body>
|
|
|
|
</html> |