Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 24 additions & 8 deletions app/templates/signup.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
{% extends "base.html" %}
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

{% block content %}
<form method="POST">
{% csrf_token %}
{{ form.as_ul }}
<button>Продолжить</button>
</form>
{% endblock %}
<!-- Bootstrap CSS -->
<!--<link rel="stylesheet" href="../../static/css/bootstrap.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">-->
<link rel="stylesheet" href="../../static/css/vera.css">
<link rel="stylesheet" href="../../static/css/bootstrap.min.css">
<title>Signup</title>
</head>
<body class="main">
<div class="progress vera">
<div class="progress-bar vera" role="progressbar" style="width: 30%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h3 class="signup">ШАГ 1 / 3</h3>
<div class="forms forms_signup">
<input type="text" placeholder="Как вас зовут">
<input type="email" placeholder="Введите e-mail">
<input type="password" placeholder="Придумайте пароль">
</div>
<button class="btn btn-vera signup">Продолжить</button>
</body>
</html>