54 lines
830 B
HTML
54 lines
830 B
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>
|
|
|
|
home / card players unite
|
|
|
|
</title>
|
|
|
|
<!-- head / css / begin -->
|
|
<link rel="stylesheet" href="{% static 'styling/custom.css' %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'styling/sketchy.css' %}">
|
|
<!-- head / css / end -->
|
|
|
|
</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 > Home </h1>
|
|
|
|
this is home.html
|
|
|
|
</body>
|
|
|
|
</html>
|