-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform3.html
107 lines (89 loc) · 2.21 KB
/
form3.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
<!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>Login</title>
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.background{
width: 97vw;
height: 100vh;
position: absolute;
transform: translate(-50%,-50%);
left: 50%;
top: 50%;
}
.form3{
position: fixed;
height: 270px;
width: 400px;
background-color: rgba(255,255,255,0.13);
margin: 30vh 75vh;
border-radius: 14px;
border: 2px solid rgba(255,255,255,0.1);
box-shadow: 0 0 40px rgba(8,7,16,0.6);
padding: 50px 35px;
}
.form3 h3{
font-size: 32px;
font-weight: 600;
line-height: 42px;
text-align: center;
font-family: 'Poppins',sans-serif;
font-variant: small-caps;
letter-spacing: 0.5px;
}
.form3 .buttons {
display: flex;
justify-content: space-around;
margin-top: 60px;
cursor: pointer;
border-radius: 12px;
}
.form3 .buttons button{
border-radius: 12px;
padding: 7px 7px;
box-shadow: 2px 2px 2px rgb(150, 13, 13);
}
.form3 .buttons a{
color: rgb(152, 33, 33);
font-weight: 600;
font-variant: small-caps;
border-radius: 12px;
font-size: 1.2rem;
text-decoration: none;
cursor: pointer;
}
.form3 .buttons button:hover{
background-color: rgb(255, 255, 255);
}
@media (max-width:500px){
.background{
width: 97vw;
height: 100vh;
}
.form3{
width: 370px;
height: 250px;
margin: 30vh 15vw;
}
}
</style>
</head>
<body>
<div class="background"></div>
<form class="form3" id="form3">
<h3>attendance</h3>
<div class="buttons">
<button onclick="document.getElementById('form1').style.display='block'"><a id="admin" href="form1.html" >admin login ?</a></button>
<button onclick="document.getElementById('form2').style.display='block'"><a id="user" href="user-login.html" >user login ?</a></button>
</div>
</form>
</body>
</html>