forked from VaishnaviR99/PharmEasy_clone13
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
45 lines (37 loc) · 1.58 KB
/
signup.html
File metadata and controls
45 lines (37 loc) · 1.58 KB
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
<!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>Create Account </title>
<link rel="stylesheet" href="signup.css">
<script src="signup.js" ></script>
</head>
<body>
<div id="header">
<div class="ph">
<img src="https://assets.pharmeasy.in/web-assets/dist/fca22bc9.png?dim=360x0" alt="pharmeasy" onclick="(location.href ='Landing page.html')" style="cursor:pointer;">
</div>
<div class="logo">
<img src="https://assets.pharmeasy.in/web-assets/dist/1fe1322a.svg?dim=360x0" alt="logo">
</div>
</div>
<h3> Quick Login / Register</h3>
<form id="createAccount">
<input id="Name" type="text" autofocus placeholder="Enter Name"><br>
<input id="no" type="number" autofocus placeholder="Enter your phone number"><br>
<input id="passw" type="password" autofocus placeholder="Enter Password"><br>
<input id="cpassw" type="password" autofocus placeholder="Confirm Password"><br>
<button class="form__button" type="submit" onclick="signup()">
Continue
<a href="login.html"></a>
</button>
<p class="form__text" style="margin-top: 10px;">
Already have an account?
<a class="form__link" href="login.html" id="linkLogin"> Sign in</a>
</p>
</form>
<p>By clicking continue, you agree with our <a> Privacy Policy</a></p>
</body>
</html>