25 lines
732 B
HTML
25 lines
732 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Sign up to make a new account</h1>
|
|
<form action="/submit-form" method="POST">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required><br><br>
|
|
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required><br><br>
|
|
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required><br><br>
|
|
|
|
<button type="submit">Submit to Database</button>
|
|
</form>
|
|
</body>
|
|
|
|
{% endblock %} |