Files
apis.cardplayersunited.com/templates/registration/register.html
2026-02-09 11:06:47 -05:00

115 lines
1.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Sign In / Card Player's Unite Admin
</title>
<link rel="stylesheet" href="{% static 'styling/custom.css' %}">
<link rel="stylesheet" href="{% static 'styling/sketchy.css' %}">
</head>
<body>
<div>
<a href="/home">
<button type="button" class="btn btn-primary">
Home
</button>
</a>
<a href="/tournament/">
<button type="button" class="btn btn-primary">
Manage Tournaments
</button>
</a>
<a href="/player/login/">
<button type="button" class="btn btn-secondary">
Sign In
</button>
</a>
</div>
<h1> Card Players Unite Admin > Register </h1>
<div>
<img src="{% static 'img/woman-going-work-bicycle.jpg' %}" width=480 height=640>
</div>
<div class="register-page">
<div class="form">
<form class="register-form" method="POST" action="">
{% csrf_token %}
{{ form.errors }}
<h4>{{form.username.label}}</h4>
<p>
Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
</p>
{{form.username}}
<br/>
<br/>
<h4>{{form.password1.label}}</h4>
<p>
Your password cant be too similar to your other personal information.
<br>
<br> Your password must contain at least 8 characters.
<br> Your password cant be a commonly used password.
<br> Your password cant be entirely numeric. </p>
{{form.password1}}
<br/>
<br/>
<h4>{{form.password2.label}}</h4>
<p> Password confirmation: Enter the same password as before, for verification. <p>
{{form.password2}}
<br/><br/>
<button type="submit" class="btn btn-secondary"> Create Account</button>
<p class="message">Already registered? <a href="/player/login/">Log In</a>.</p>
</form>
</div>
</div>
</body>
</html>