-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
52 lines (43 loc) · 2.65 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<head>
<title>Sign Up - Responsive</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="lib/signup.js"></script>
<link rel="stylesheet" href="lib/signup.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap" rel="stylesheet"></head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<body>
<div class="formbox1" id="form">
<div class="formbox2">
<h2>Sign Up</h2>
<div class="form">
<input type="text" id="user" placeholder="Enter Username" >
<button onmouseover="document.getElementById('at1').style.display='block'" onmouseout="document.getElementById('at1').style.display='none'">
<i class="fa fa-info-circle" aria-hidden="true"></i>
</button>
<span id="at1"> USER - no special charactor, having more than 3 charactors.</br>For Availability atleast use 2 number digits with username.</span>
<p class="p0" id="p0"></p>
<input type="email" id="mail" placeholder="Enter Mail" onkeyup="validateMail()" >
<button onmouseover="document.getElementById('at2').style.display='block'" onmouseout="document.getElementById('at2').style.display='none'">
<i class="fa fa-info-circle" aria-hidden="true"></i>
</button>
<span id="at2"> EMAIL - ie "[email protected]" or "[email protected]"</span>
<p class="p3" id="p3"></p>
<input type="tel" id="tel" maxlength="10" placeholder="Mobile No." ></br>
<input type="password" id="pass" placeholder="Enter Password" onkeyup="strPass()">
<button onmouseover="document.getElementById('at3').style.display='block'" onmouseout="document.getElementById('at3').style.display='none'">
<i class="fa fa-info-circle" aria-hidden="true"></i>
</button>
<span id="at3">PASSWORD (Strong) - must have atleast one special charactor, one capital letter, one number and total 8 digits or more.</br></span>
<p class="p1" id="p1"></p>
<input type="password" id="cpass" placeholder="Confirm Password" ></br>
<p class="p2" id="p2"></p>
<input type="checkbox" value="check" required>
<label for="check">I agree with Terms & Conditions.</label>
<input type="submit" value="Submit" onclick="return validateUser()" ></br>
</div>
</div>
</div>
</body>
</html>