mirror of
https://github.com/csd4ni3l/grass_touching_captcha.git
synced 2026-01-01 12:33:45 +01:00
add new fields to user so we can track grass touching activity later, add part of the application part which currently includes a homepage and a leaderboard
This commit is contained in:
44
templates/app.jinja2
Normal file
44
templates/app.jinja2
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "base.jinja2" %}
|
||||
{% block title %}Grass Touching Dashboard{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<div class="container-fluid d-flex justify-content-center">
|
||||
<a class="navbar-brand" href="#">Grass Touching Captcha</a>
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" aria-current="page" href="#">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/info">Information</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/leaderboard">Leaderboard</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="d-flex justify-content-center align-items-center vh-100 bg-dark">
|
||||
<div class="d-flex flex-column justify-content-center text-white text-center" style="transform: translateY(-25%);">
|
||||
<h1>Welcome back, {{ username }}</h1>
|
||||
<h5>Why are you here?</h5>
|
||||
<h5>Why did you cheat?</h5>
|
||||
<h5>I know you did!!!</h5>
|
||||
<h5>No one touches grass!</h5>
|
||||
<h5>I know you don't go outside you liar!</h5>
|
||||
<h5>You are a discord moderator who plays League of Legends 24 hours a day!</h5>
|
||||
<h5>But, if you really want to learn how to go outside and touch grass, check our <a href="/info">unofficial guide</a></h5>
|
||||
<h5>To prove you belong here, you have to touch grass each day or your account will be permanently banned with no exceptions.</h5>
|
||||
<h5>To see how you fare against others, check the <a href="/leaderboard">leaderboard</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user