-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
33 lines (30 loc) · 1.21 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
<!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-in</title>
<link rel="stylesheet" href="style/signup.css">
</head>
<body>
<div id="logo">
<img src="https://www.bing.com/images/blob?bcid=Sz1DEV1dmyMFuw" alt="">
</div>
<form>
<h2>New Registration</h2>
<label>Full Name</label><br>
<input id="name" type="text" placeholder="Enter your name"><br>
<label>Phone Number </label><br>
<input id="phoneno" type="text" placeholder="Enter your number" maxlength="10"><br>
<label>E-mail</label><br>
<input id="email" type="email" placeholder="Enter your email"><br>
<label for="pwd">Password</label><br>
<input type="password" id="password" name="pwd" minlength="4" placeholder="Enter password">
<p>Welcome to our side and expends your ideas with us</p>
<a href=""><input id="butt" type="submit" value="SIGN-UP"></a>
<h3>Already have an account? <a href="signin.html">Sign-in</a></h3>
</form>
</body>
</html>
<script src="./scripts/signup.js"></script>