forked from webdevelopmentteam1401/HW1-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signUp.html
68 lines (62 loc) · 3.05 KB
/
signUp.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="node_modules/alertifyjs/build/css/alertify.rtl.css">
<link rel="stylesheet" href="node_modules/alertifyjs/build/css/themes/default.rtl.css">
<title>بیلیکو، برای سفر خود برنامهریزی کنید!</title>
<link rel="icon" type="image/x-icon" href="assets/images/logo.png">
</head>
<body id="signup-page" class="flex-body-row-direction">
<div class="form-container">
<form id="signUpForm" class="user-info-form" autocomplete="off">
<img
src="assets/images/signup.svg"
alt="signup"
/>
<h4 class="text-center text-primary-bold">ثبت نام</h4>
<label> نام خود را وارد کنید
<input class="fa-input" id="firstName" type="text" placeholder="نام"
oninvalid="this.setCustomValidity('نام خود را وارد کنید')"
oninput="this.setCustomValidity('')"
>
</label>
<label> نام خانوادگی خود را وارد کنید
<input class="fa-input" id="lastName" type="text" placeholder="نام خانوادگی"
oninvalid="this.setCustomValidity('وارد کردن نام خانوادگی الزامی است')"
oninput="this.setCustomValidity('')"
>
</label>
<label>شماره پاسپورت خود را وارد کنید
<input class="en-input" id="passport-number" type="text" placeholder="شماره پاسپورت"
oninvalid="this.setCustomValidity('وارد کردن شماره پاسپورت الزامی است')"
oninput="this.setCustomValidity('')"
>
</label>
<label>ایمیل خود را وارد کنید
<input class="en-input" id="email" type="email" placeholder="somebody@example.com"
oninvalid="this.setCustomValidity('وارد کردن ایمیل الزامی است')"
oninput="this.setCustomValidity('')"
>
</label>
<label>رمز خود را وارد کنید
<input class="en-input" id="password" type="password" placeholder="رمز عبور"
oninvalid="this.setCustomValidity('وارد کردن رمز الزامی است')"
oninput="this.setCustomValidity('')"
>
</label>
<input id="show-password" type="checkbox">
<label for="show-password">نمایش رمز</label>
<button type="submit" id="signUpButton"
class="text-center text-justify text-right button container-primary expanded">
ثبت نام
</button>
</form>
</div>
<!--included scripts-->
<script src="node_modules/alertifyjs/build/alertify.min.js"></script>
<script src="scripts/signUpValidation.js"></script>
</body>
</html>