-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaindex.html
120 lines (94 loc) · 2.7 KB
/
aindex.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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Styling for the form container */
.container {
position: relative;
width: 50%;
max-width: 400px;
background-color: rgba(255, 255, 255, 0.4);
margin: 0 auto;
border-radius: 20px;
padding: 20px;
}
/* Styling for the VVIT background image */
.background-image {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
filter: blur(3px);
}
h2 {
font-size: 30px;
text-align: center;
}
/* Styling for form labels */
label {
font-size: 18px;
display: block;
margin-bottom: 8px;
}
/* Styling for form inputs */
input[type="text"],
input[type="password"] {
width: 100%;
padding: 12px;
border-radius: 8px;
border: 1px solid #ccc;
margin-bottom: 20px;
box-sizing: border-box;
font-size: 16px;
}
/* Styling for the login button */
button[type="submit"] {
width: 100%;
padding: 12px;
border-radius: 8px;
border: none;
background-color: #4CAF50;
color: white;
font-size: 18px;
cursor: pointer;
}
.message {
position: absolute;
top: 20px;
width: 100%;
font-size:20px;
text-align: center;
/* Example color */
}
/* Styling for the login button on hover */
/* Styling for the error message */
</style>
p
</head>
<body>
<!-- Background image -->
<img src="vvit.jpg" alt="VVIT" class="background-image">
<div class="message">
<p><strong>Vasireddy Venkatadri Institute Of Technology(Autonomous)</strong></p>
<p><strong>Academia Check</strong></p>
</div>
<div class="container">
<h2>Login Here</h2>
<form action="login" method="post">
<label for="username">Username</label>
<input type="text" id="username" name="userName" placeholder="Enter your username" required>
<label for="password">Password</label>
<input type="password" id="password" name="userPass" placeholder="Enter your password" required>
<button type="submit">Login</button>
</form>
</div>
</body>
</html>