-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
124 lines (122 loc) · 2.61 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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>Document</title>
<style>
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background: url(images/background.jpg) fixed;
background-repeat: no-repeat;
background-size: cover;
min-height: 100vh;
}
main{
width: 50%;
position: fixed;
}
.container{
background: rgba(199, 199, 199, 0.856);
width: 500px;
height: 550px;
display:block;
border-radius: 10px;
margin: 50px auto;
box-shadow:5px 5px 10px rgba(94, 84, 84, 0.767);
}
#img-div{
width: fit-content;
margin: auto;
}
#img-div img{
width: 150px;
margin:20px 0px;
}
form{
width: 100%;
height: 100%;
}
input{
margin: 20px auto;
display:block;
width: 90%;
padding: 15px 5%;
border: 0;
border-radius: 50px;
outline: none;
}
.buttons{
width: 90%;
margin: auto;
}
button{
display: block;
width: 100%;
padding: 15px 5%;
border: 0;
margin: 5px auto;
border-radius: 50px;
outline: none;
transition: ease .5s;
font-size: 16px;
font-weight: bold;
}
[type="submit"]{
background-color:rgba(20, 128, 128, 0.589);
}
[type="submit"]:hover{
background-color: rgba(15, 99, 99, 0.822) ;
color: white;
}
[type="reset"]{
width: 50%;
background-color: lightslategrey;
margin: auto;
}
[type="reset"]:hover{
background-color: rgb(50, 58, 65);
color: white;
}
@media screen and (max-width:700px) {
body{
height: ;
background: none;
}
main{
width: 100%;
position: relative;
}
.container{
width: 100%;
height: 100vh;
margin: 0;
}
}
</style>
</head>
<body>
<main>
<div class="container">
<div id="img-div">
<img src="images/logo.png">
</div>
<form name="f" action="#">
<input name="user" type="text" placeholder="UserName" autocomplete="no">
<input name="email" type="email" placeholder="email" >
<input name="password" type="text" placeholder="password">
<input name="pass_verif" type="text" placeholder="password confirm">
<div class="buttons">
<button type="submit">Sign up</button>
<button type="reset">reset</button>
</div>
</form>
</div>
</main>
</body>
</html>