0.0.1 upd

This commit is contained in:
2023-06-22 16:27:36 +03:00
parent 2e4d72156c
commit 27dd698d88
8 changed files with 275 additions and 9 deletions

View File

@@ -3,8 +3,14 @@
<head>
<meta charset="UTF-8">
<title>Title</title>
{% include 'inter/meta.html' %}
</head>
<body>
<div class="wrapper">
{% include 'blocks/b_header.html' %}
{% include 'blocks/b_content.html' %}
{% include 'blocks/b_footer.html' %}
</div>
</body>
</html>

View File

@@ -1,10 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
{% include 'inter/meta.html' %}
<div class="registration">
<h2>Регистрация</h2>
<div class="chosen_buttons">
<button>Перевозчик</button>
<button>Отправитель</button>
</div>
<form action="">
{% csrf_token %}
<div class="reg_inputs">
<label><input name="username" type="text" placeholder="Имя"></label>
<label><input name="email" type="text" placeholder="E-mail"></label>
<label><input name="password" type="text" placeholder="Пароль"></label>
<label><input name="surname" type="text" placeholder="Фамилия"></label>
<label><input name="tel" type="text" placeholder="Телефон"></label>
<label><input name="confirm password" type="text" placeholder="Подтвердить пароль"></label>
</div>
<input type="checkbox"> <p>Регистрируясь, я соглашаюсь с Лицензионным соглашениеми и Политикой конфиденциальности</p>
<div class="reg_button">
<button id="registration" onclick="SendRegistrationForm(this)"> Зарегистрироваться </button>
</div>
</form>
</div>