This repository has been archived by the owner on Oct 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
58 lines (57 loc) · 1.77 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
57
58
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" >
<link rel="stylesheet" href="bootstrap.min.css" >
<style>
body{
background:url('bg.jpg')
}
.header{
height:90vh;
width:100%;
}
.footer{
height:10vh;
}
.white-box{
margin-top:15vh;
background:rgba(255,255,255,0.86);
}
input[type=text],input[type=password]{
background-color:rgb(143,143,143);
color:#fff;
}
</style>
</head>
<body>
<div class="header">
<div class="container">
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-4 white-box text-center">
<h1>Login</h1><br>
<form class="form-group">
<label class="label label-primary">User Id</label><br>
<input type="text" name="id" class="form-control"><br><br>
<label class="label label-primary">Password</label><br>
<input type="password" name="pass" class="form-control" /><br><br>
<input type="submit" class="btn btn-success" value="Login" />
<input type="reset" class="btn btn-danger" value="Reset" />
</form>
</div>
<div class="col-sm-4"></div>
</div>
</div>
</div>
<div class="">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6 text-center footer text-white" style="background-color:#21424a;"><h4 style="margin-top:4%;">Register Now</h4></div>
<div class="col-sm-6 text-center bg-success footer text-white" style="background-color:#2fac6c;"><h4 style="margin-top:4%;">Forgot Something</h4></div>
</div>
</div>
</div>
</body>
</html>