This commit is contained in:
Administrator
2023-09-23 16:13:11 +03:00
commit 9e7fc7b4c1
605 changed files with 78660 additions and 0 deletions

27
templates/welcome.html Normal file
View File

@@ -0,0 +1,27 @@
{% extends 'base_main.html' %}
{% block title %}Вход{% endblock %}
{% block body %}
<div class="center">
<center>
<div class="col-6">
<div>
<h1>Platform</h1>
</div>
<div>
<form method="POST">
<p id="message" style="color: red;"></p>
{% csrf_token %}
<input type="text" class="form-control" name="username" id="username" placeholder="username"><br>
<input type="password" class="form-control" name="password" placeholder="пароль"><br>
<button type="submit" id="enter" class="sub btn btn-dark form">Вход</button>
</form>
</div>
или войти с помощью<br><br>
<a href="#"><img style="width: 40px; height: 40px;" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/VK_Compact_Logo_%282021-present%29.svg/1200px-VK_Compact_Logo_%282021-present%29.svg.png"></a>
<a href=#""><img style="width: 40px; height: 40px; margin-left: 10px;" src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/58/Yandex_icon.svg/2048px-Yandex_icon.svg.png"></a>
</div>
</center>
</div>
{% endblock %}