styling changes and cleaning out html files a bit

This commit is contained in:
ralphi3
2026-06-19 14:00:27 +12:00
parent 3077594cf3
commit 2c10524052
5 changed files with 17 additions and 35 deletions
+4 -12
View File
@@ -1,14 +1,7 @@
{% 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">
<h1 style="text-decoration: underline;">Sign up to make a account</h1>
<form action="/submit-form" method="POST" class="signup">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required><br><br>
@@ -18,8 +11,7 @@
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br>
<button type="submit">Submit to Database</button>
</form>
</body>
<button type="submit" class="submitbutton" style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; border-color: gray; border-radius: 4px; border-width: 4px;">Create account</button>
</form>
{% endblock %}