-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
136 lines (130 loc) · 3.87 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Assignment2</title>
<link rel="stylesheet" href="signup.css" />
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
/>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="login-wrap">
<div class="image-wrap">
<img
class="image"
src="/home/ali/web/assignment2/wp-assignment2/web_hw2/web_hw2/files/signup-highQ-light.jpg"
alt=""
/>
<div class="centered">
<h1>ثبت نام کن!</h1>
<h1>آفرین</h1>
</div>
</div>
<div class="login-html">
<input
id="tab-1"
type="radio"
name="tab"
class="sign-in"
checked
/><label style="width: 35%; text-align: center" for="tab-1" class="tab"
>ورود</label
>
<input id="tab-2" type="radio" name="tab" class="sign-up" /><label
style="width: 35%; text-align: center"
for="tab-2"
class="tab"
>ثبت نام</label
>
<div class="login-form">
<div class="sign-in-htm">
<div class="group">
<input
style="width: 300px"
id="user"
type="email"
class="input"
placeholder="ایمیل"
required
/>
</div>
<div class="group">
<input
style="width: 300px"
id="pass"
type="password"
class="input"
data-type="password"
placeholder="رمز عبور"
required
/>
</div>
<div class="group">
<input
style="width: 300px"
type="submit"
class="button"
value="ورود"
/>
</div>
<div class="hr"></div>
</div>
<div class="sign-up-htm">
<div class="group">
<input
style="width: 300px"
id="user"
type="email"
class="input"
placeholder="ایمیل"
/>
</div>
<div class="group">
<input
style="width: 300px"
id="pass"
type="password"
class="input"
data-type="password"
placeholder="رمز عبور"
/>
</div>
<div class="group">
<input
style="width: 300px"
id="pass"
type="password"
class="input"
data-type="password"
placeholder="تکرار رمز عبور"
/>
</div>
<div class="group">
<input id="check" type="checkbox" class="check" />
<label for="check"
><span class="icon"></span> قوانین و شرایط را میپذیرم</label
>
</div>
<div class="group">
<input
style="width: 300px"
type="submit"
class="button"
value="ثبت نام"
/>
</div>
<div class="hr"></div>
</div>
</div>
</div>
</div>
</body>
</html>