-
Notifications
You must be signed in to change notification settings - Fork 3
/
login_mobile.html
135 lines (89 loc) · 4.09 KB
/
login_mobile.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
<!DOCTYPE html>
<html dir="rtl" lang="fa">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>login</title>
<link rel="icon" href="assets/images/logo/web-icon.svg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style/login_mobile.css">
<!-- remix icon -->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<section class="title-cont">
<div id="login-title">
<h2>سلام رفیق</h2>
<p>به خونه خوش اومدی ، اگه عضو هستی وارد شو</p>
</div>
<div id="register-title">
<h2>خوش اومدی رفیق !</h2>
<p>مشخصات شخصی خود رو با دقت وارد کن و به خانواده کوچیک ما بپیوند</p>
</div>
</section>
<section class="login-register-cont">
<div class="register selected">
<div class="register-title">
<p class="">ثبت نام</p>
</div>
<span class="form-cont">
<form action="" class="form-register">
<!--todo inputs -->
<div class="input-cont">
<label for=""><i class="ri-user-6-line"></i></label>
<input id="name-register" type="text" placeholder="نام">
</div>
<div class="input-cont">
<label for=""><i class="ri-mail-open-line"></i></label>
<input id="email-register" type="email" placeholder="ایمیل">
</div>
<div class="input-cont">
<label for=""><i class="ri-lock-password-line"></i></label>
<input id="pass-register" type="password" placeholder="رمز">
</div>
<div class="input-cont">
<label for=""><i class="ri-lock-password-line"></i></label>
<input id="re-pass-register" type="password" placeholder="تکرار رمز">
</div>
<div class="remember-cont">
<small>منو بخاطر بسپار </small>
<input type="checkbox" name="remember" id="remember">
</div>
</form>
<span class="submit-cont">
<a href="#">
<input id="submit-register" type="submit" value="ثبت نام">
</a>
</span>
</span>
</div>
<div class="login ">
<div class="login-title">
<p class="title">ورود</p>
</div>
<span class="form-cont">
<form action="" class="form-login">
<!--todo inputs -->
<div class="input-cont">
<label for=""><i class="ri-mail-open-line"></i></label>
<input id="email-login" type="email" placeholder="ایمیل">
</div>
<div class="input-cont">
<label for=""><i class="ri-lock-password-line"></i></label>
<input id="pass-login" type="password" placeholder="رمز">
</div>
<a href="#"><small>رمزتو فراموش کردی؟</small></a>
</form>
<span class="submit-cont">
<a href="#">
<input id="submit-login" type="submit" value="ورود">
</a>
</span>
</span>
</div>
</section>
</body>
<script src="https://code.jquery.com/jquery-3.6.1.min.js "></script>
<script src="js/login_mobile.js"></script>
</html>