-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
62 lines (53 loc) · 2.66 KB
/
login.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
<!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>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<style>
body{
background-image: url(./image/logIn_bg.png);
background-size: 100% auto ;
}
.container{
background-color: rgb(253, 252, 252);
box-shadow: 0 0 0 20px white;
opacity:0.5;
}
.container:hover{
opacity:1;
}
</style>
</head>
<body>
<div class="container my-5 p-5 " style="border:1px solid rgb(43, 43, 43)">
<div class="row">
<div class="col-lg-8 col-md-6 col-sm-6 mx-auto ">
<form>
<h1 class="py-3 logInText">WELCOME</h1>
<h1 class="mt-3 mb-5">HOME!</h1>
<div class="form-group">
<label for="exampleInputEmail1" class="logInText" style="text-align: center;" >ACCOUNT</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter account">
</div>
<div class="form-group">
<label for="exampleInputPassword1" class="logInText mt-3">PASSWORD</label>
<input type="password" class="form-control " id="exampleInputPassword1" placeholder="Enter Password">
</div>
<div class="form-check my-4">
<input type="checkbox" class="form-check-input " id="exampleCheck1">
<label class="form-check-label " for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary mx-auto">Submit</button>
</form>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-VHvPCCyXqtD5DqJeNxl2dtTyhF78xXNXdkwX1CZeRusQfRKp+tA7hAShOK/B/fQ2" crossorigin="anonymous"></script>
</body>
</html>