-
Notifications
You must be signed in to change notification settings - Fork 0
/
Signup.html
39 lines (37 loc) · 2.3 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
<!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>Sign Up</title>
<link rel="stylesheet" href="/styles/signup.css">
<link rel="shortcut icon" href="imgs/Your safety, matters to us.png" type="image/x-icon">
</head>
<body>
<h1 style="text-align: center; color: rgb(8, 71, 19);background-color: aquamarine;width: 40%;margin: auto;">MS Pharmacy Sign Up ♥</h1>
<div id="container">
<div class="slides">
<img src="https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8M3x8aGVhbHRofGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60" alt="">
<img src="https://images.unsplash.com/photo-1505576399279-565b52d4ac71?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8NXx8aGVhbHRofGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60" alt="">
<img src="https://images.unsplash.com/photo-1505751172876-fa1923c5c528?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTF8fGhlYWx0aHxlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60" alt="">
<img src="https://plus.unsplash.com/premium_photo-1663013467272-f0ca0edf1961?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTl8fGhlYWx0aHxlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60" alt="">
</div>
<form action="">
<h2>Sign UP</h2>
<h3>Enter your details here</h3>
<label for="name">Enter Your Name</label>
<input type="text" name="username" id="username" required placeholder="Enter you name">
<label for="email">Enter Your Email</label>
<input type="email" name="email" id="email" placeholder="abc@xyz.com" required>
<label for="password">Enter Password</label>
<input type="password" name="pass" id="pass" placeholder="*********" minlength="8">
<div> <input type="checkbox"><span>I accept <a href="">Terms and Conditions</a></span></div>
<div><input type="checkbox"><span>I like to recieve Newsletters from us.</span></div>
<input type="submit" value="Register">
</form>
</div>
</body>
</html>
<script src="/scripts/signup.js"></script>
<script src="/scripts/slideshow.js"></script>