-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (42 loc) · 1.86 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
<!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="hero">
<div class="form-box">
<div class="button-box">
<div id="btn"></div>
<button class="toggle-btn" onclick="login()">ورود</button>
<button class="toggle-btn" onclick="register()">ثبت نام</button>
</div>
<div class="social">
<ul>
<li><a href="#"><i class="fab fa-google-plus"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
</ul>
</div>
<form id="login" class="input-group">
<input type="text" class="input-field" placeholder="نام کاربری یا ایمیل">
<input type="password" class="input-field" placeholder="پسوورد شما">
<input type="checkbox" id="checkbox">
<label for="checkbox">فراموشم نکن</label>
<input type="submit" value="ورود">
</form>
<form id="register" class="input-group">
<input type="text" class="input-field" placeholder="نام کاربری">
<input type="text" class="input-field" placeholder="نام کاربری یا ایمیل">
<input type="password" class="input-field" placeholder="پسوورد شما">
<input type="submit" value="ثبت نام">
</form>
</div>
</div>
<script src="./js/all.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>