-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 2.95 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
.form-container {
background: rgb(245, 243, 243);
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgb(20, 2, 124);
position: absolute;
top: 20vh;
}
.backg {
background: rgb(37, 37, 37);
}
</style>
</head>
<body class="backg">
<div class="container-fluid">
<section class="row justify-content-center">
<section class="col-md-3">
<form class="form-container" method='post' action='profile'>
<h1><section style="color: rgb(207, 207, 207); text-align: center; color: rgb(36, 36, 36);">Login</section></h1>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<section class="row">
<section class="col-6" style="padding: 1px; left: 14px;">
<input class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" name='mail'>
</section>
<section class="col-4 " style="top: 5px; color: rgb(121, 121, 121);">
<label>@nirmauni.ac.in</label>
</section>
</section>
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" name='password'>
<small id="passHelp" class="form-text text-muted">Don't worry, your password is safe with us :)</small>
</div>
<div class="col-md-12 text-center">
<button type="submit" class="btn btn-primary btn-block">Submit</button>
</div>
<div class="col-md-12 text-center">
<a href='/register'>Don't have an Account?</a>
</div>
</form>
</section>
</section>
</div>
<div style="position: absolute; bottom: 0; right: 0; text-align:right;">
<section style="color: antiquewhite;">Developed by:<br> Vivek Ramnani(17BCE135)<br> Yusuf Kharodawala(17BCE138)<br>Nirma University</section>
</div>
</body>