automated push from the terminal

This commit is contained in:
Software Shinobi
2026-02-09 11:06:47 -05:00
parent 2f5926a171
commit fe556105b9
86 changed files with 17183 additions and 2 deletions

View File

@@ -0,0 +1,95 @@
{% 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 > Log In </h1>
<div>
<img src="{% static 'img/cyclist-sunny-day-bike-adventure-travel-photo.jpg' %}" height=480 width=640>
</div>
<form method="POST" action="">
{{ form.non_field_errors }}
{% csrf_token %}
<div>
<h3> user name </h3>
<input type="text" name="username">
</div>
<div>
<h3> password </h3>
<input type="password" name="password">
</div>
<div>
<br>
<button type="submit" class="btn btn-secondary"> Log In </button>
<p class="message">Don't have an account? <a href="/player/register">Create Account</a>.</p>
</div>
</form>
<div class="footer">
Robert's Bike Rental created by <a href="https://github.com/gomsur">Robert</a>. <a href="https://www.freepik.com/free-photo/cyclist-sunny-day-bike-adventure-travel-photo_3972810.htm#query=bike&position=0&from_view=search&track=sph">Image by jcomp</a> on Freepik.
</div>
</body>
</html>

View File

@@ -0,0 +1,114 @@
{% 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>