-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistiration.html
42 lines (28 loc) · 1.36 KB
/
registiration.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% extends "base.html" %}
{% block content %}
<div class="card-wrapper">
<div class="card">
<h1 class="center">Create An Account</h1>
<form name="signup_form">
<label for="name">name</label>
<input type="text" name="name" class="field" required>
<label for="surname">surname</label>
<input type="text" name="surname" class="field" required>
<label for="birthday">birthday:</label>
<input type="date" id="birthday" name="birthday" required>
<label for="phone">Enter your phone number:</label>
<input type="tel" id="phone" name="phone" required>
<label for="tckno">TCKNO</label>
<input type="text" id="tckno" name="tckimlik" required minlength="11" maxlength="11" >
<label for="email">Email</label>
<input type="email" name="email" class="field" required>
<label for="password">Password</label>
<input type="password" name="password" class="field" required>
<input type="submit" value="Sign Up" class="btn">
</form>
{% if error_message %}
<p class="error_message">{{ error_message }}</p>
{% endif %}
</div>
</div>
{% endblock %}