-
Notifications
You must be signed in to change notification settings - Fork 0
/
type.html
106 lines (106 loc) · 3.44 KB
/
type.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>IIITA - BDA</title>
<meta charset="utf-8" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="icon" type="image/png" href="./iiit.png" />
<link
rel="stylesheet"
href="https://www.w3schools.com/w3css/4/w3.css"
/>
<link rel="stylesheet" href="./CSS/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"
/>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
flex-direction: column;
width: 100%;
gap: 2rem;
}
.parent_cont {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 6rem;
}
.child_cont {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
}
.child_cont img {
width: 200px;
border-radius: 50%;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<div
style="
font-size: 3rem;
color: rgb(1, 41, 112);
text-align: center;
font-weight: bold;
"
>
Login as
</div>
<div class="parent_cont">
<a href="http://localhost:8080/admin">
<div class="child_cont">
<img src="./PIC/admin.jpg" alt="" />
<div
style="
font-size: 2rem;
color: rgb(1, 41, 112);
text-align: center;
font-weight: bold;
margin-bottom: 1rem;
"
>
Admin
</div>
</div>
</a>
<a href="./user/login.html">
<div class="child_cont">
<img src="./PIC/user.jpg" alt="User" />
<div
style="
font-size: 2rem;
color: rgb(1, 41, 112);
text-align: center;
font-weight: bold;
margin-bottom: 1rem;
"
>
User
</div>
</div>
</a>
</div>
</body>
<script></script>
</html>