-
Notifications
You must be signed in to change notification settings - Fork 0
/
account.html
129 lines (127 loc) · 5.71 KB
/
account.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
<!DOCTYPE html>
<html lang="en">
<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>Account -ReadStore</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- font awesome -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.3/css/fontawesome.min.css">
<!-- script -->
<script src="https://kit.fontawesome.com/020c81ea87.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- start of header -->
<div class="header account-page">
<div class="container">
<div class="head">
<a href="index.html"><img src="img/logo.png" class="logo" alt="logo"></a>
<nav class="navbar">
<ul class="hover">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="account.html">Account</a></li>
<li><a href="cart.html"><i class="fas fa-shopping-bag"></i></a></li>
</ul>
<!-- <a href="cart.html"><img src="img/cart.png" alt="cart"></a> -->
<!-- <a href="cart.html"><i class="fas fa-shopping-bag"></i></a> -->
<span class="icon">
<span></span>
<span></span>
<span></span>
</span>
</nav>
</div>
<div class="row">
<div class="col-1">
<img src="img/image1.png" alt="image section">
</div>
<div class="col-2">
<div class="form-container">
<div class="head-cart">
<span onclick="login()">Login</span>
<span onclick="register()">Register</span>
<hr id="Indicator">
</div>
<form action="" id="LoginForm">
<input type="text" name="username" id="" placeholder="username">
<input type="password" name="password" id="" placeholder="password">
<button type="submit" class="btn">Login</button>
<a href="">Forgot password</a>
</form>
<form action="" id="RegisterForm">
<input type="text" name="username" id="" placeholder="username">
<input type="email" name="email" id="" placeholder="email">
<input type="password" name="password" id="" placeholder="password">
<button type="submit" class="btn">Register</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- end of header -->
<!-- start of footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-4">
<h3>Download Our App</h3>
<p>Download App for Android and ios mobile phone</p>
<div class="download">
<img src="img/play-store.png" alt="play-store">
<img src="img/app-store.png" alt="app-store">
</div>
</div>
<div class="col-4">
<img src="img/logo-white.png" class="logo" alt="logo">
<p>Our Purpose Is To Sustainably Make the Pleasure and Benifits of sports Accumlate to the money.</p>
</div>
<div class="col-4">
<h3>Useful Links</h3>
<a href="">Coupons</a>
<a href="">Blog post</a>
<a href="">Return Policy</a>
<a href="">Join Affiliate</a>
</div>
<div class="col-4">
<h3>Follow Us</h3>
<a href="">Facebook</a>
<a href="">Twitter</a>
<a href="">Instagram</a>
<a href="">Youtube</a>
</div>
</div>
<div class="copyright">
<hr>
<p> <span>© </span> Copyright 2021 - <span>Hicham Zakroum</span></p>
</div>
</div>
</footer>
<!-- end of footer -->
<!-- js scripts -->
<script>
var LoginForm = document.getElementById("LoginForm");
RegisterForm = document.getElementById("RegisterForm");
Indicator = document.getElementById("Indicator");
function register(){
RegisterForm.style.transform = "translateX(0px)";
LoginForm.style.transform = "translateX(0px)";
Indicator.style.transform = "translateX(40px)";
};
function login(){
RegisterForm.style.transform = "translateX(300px)";
LoginForm.style.transform = "translateX(300px)";
Indicator.style.transform = "translateX(-50px)";
};
</script>
</body>
</html>