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

96 lines
1.7 KiB
HTML

{% 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>