summaryrefslogtreecommitdiff
path: root/templates/register.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/register.html')
-rw-r--r--templates/register.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/register.html b/templates/register.html
new file mode 100644
index 0000000..1405920
--- /dev/null
+++ b/templates/register.html
@@ -0,0 +1,21 @@
+{% extends "base.html" %}
+
+{% block content %}
+ <h2>Create New Team Account</h2>
+ <form method="POST" action="{{ url_for('register') }}">
+ <div>
+ <label for="username">Username:</label>
+ <input type="text" id="username" name="username" required>
+ </div>
+ <div>
+ <label for="password">Password:</label>
+ <input type="password" id="password" name="password" required>
+ </div>
+ <div>
+ <label for="team_name">Team Name:</label>
+ <input type="text" id="team_name" name="team_name" required>
+ </div>
+ <button type="submit">Create Account</button>
+ </form>
+ <p>Already have an account? <a href="{{ url_for('login') }}">Login here</a>.</p>
+{% endblock %} \ No newline at end of file