-
Notifications
You must be signed in to change notification settings - Fork 2
/
signupPage.html
86 lines (84 loc) · 2.04 KB
/
signupPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="favicon-32x32.png">
<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
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
</head>
<style>
body{
background-color: BLACK;
}
.gif {
background-image: url("https://upgifs.com//img/gifs/l3vR80VeBr8QxgIIo.gif");
background-size: cover;
height: 100vh;
padding: 0;
margin: 0;
}
.signupcontainer{
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 3vh;
position: absolute;
top: 13vh;
left: 39vw;
/* border: 2px solid black; */
width: 47vw;
/* text-align: center; */
font-weight: bold;
color: #e5e7f4;
}
.signbtn{
width: 10%;
margin: 0px 10px;
}
h2{
/* text-align: center; */
}
input{
font-size: 3vh;
}
.signbtn input{
background-color: #8bbb7e;
}
</style>
<body>
<div class="gif">
</div>
<div class="signupcontainer">
<h2>Sign Up</h2>
<form action="noaction.php" class="forms1">
<div>
Enter Mobile NO./EMAIL:<input type="text" name="Enter Your Mobile Number" id="mobile NUmber">
</div>
<br>
<div>
Set New Password: <input type="password" name="Enter Your Password" id="password">
</div>
<br>
<div>
Enter your DOB: <input type="date" name="" id="">
</div>
<br>
<form>
<button
class="btn btn-danger"
style="position: absolute;
top: 100%;
right: 60%"
type="submit"
formaction="socialMediaPage.html"
>
Sign up
</button>
</form>
</body>
</html>