-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 1.94 KB
/
index.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
<!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="./styles/style.css">
<title>Js Project</title>
</head>
<body>
<div class="container">
<div class="header-title">
<h3>ثبت نام کنید</h3>
</div>
<form class="form" id="form">
<div class="form-control">
<label>نام کاربری</label>
<input type="text" id="username" placeholder="مثلا : ParsFront">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-triangle"></i>
<span>پیام خطا</span>
</div>
<div class="form-control">
<label>ایمیل</label>
<input type="text" id="email" placeholder="مثلا : a@gmail.com">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-triangle"></i>
<span>پیام خطا</span>
</div>
<div class="form-control">
<label>پسوورد</label>
<input type="password" id="password" placeholder="پسوورد">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-triangle"></i>
<span>پیام خطا</span>
</div>
<div class="form-control">
<label>تکرار پسوورد</label>
<input type="password" id="password2" placeholder="تکرار پسوورد">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-triangle"></i>
<span>پیام خطا</span>
</div>
<button>ثبت نام</button>
</form>
</div>
<script src="./js/all.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>