platform/templates/welcome.html
Administrator 9e7fc7b4c1 initial
2023-09-23 16:13:11 +03:00

27 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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