-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (47 loc) · 2.66 KB
/
index.html
File metadata and controls
57 lines (47 loc) · 2.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap Simple Login Window</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body class="">
<style>
.form-bg{
/* background: rgb(226,226,226);
background: radial-gradient(circle, rgb(190, 190, 190) 0%, rgb(122, 122, 122) 51%, rgb(172, 172, 172) 100%);
*/
background-color: rgb(245, 245, 245);
}
.box{
margin-top: 100px;
}
</style>
<form class="form-bg d-flex flex-row w-auto h-100 justify-content-center align-item-center">
<div class="box container d-flex flex-row w-auto vh-100 justify-content-center align-item-center " >
<div class="d-flex flex-row align-middle justify-content-center align-item-center shadow p-3 mb-5 bg-body rounded " style=" height: 490px; border: 0px solid; background-color: rgba(228, 228, 228, 0.72);">
<div class="main align-middle w-40 h-95 rounded-3 d-flex flex-column justify-content-center align-item-center align-self-center ">
<h1 class="text-center text-primary m-5 fw-bolder">Login Form</h1>
<div class="section1 mx-auto row p-2 m-2 ">
<label class="row-1 mx-auto mr-2 mb-2 text-right fw-bold">Username</label>
<input class="row-9 mx-auto border-black " type="text" name="" id="">
</div>
<div class="section2 mx-auto row p-2 m-2">
<label class="row-1 mx-auto mr-2 mb-2 fw-bold" >Password</label>
<input class="row-9 mx-auto border-black" type="password" name="" id="" >
</div>
<div class="section3 mx-auto row p-4" style="width: 400px;">
<button class="btn btn-outline-success col p-2 m-1 fw-bold">Login</button>
<button class="btn btn-outline-danger col p-2 m-1 fw-bold">Clear</button>
</div>
</div>
<div class="d-flex">
<img src="https://images.unsplash.com/photo-1525547719571-a2d4ac8945e2?q=80&w=1664&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" class="d-flex img-fluid p-2 align-self-center" alt="" style="height: 440px; width: 340px; border-radius: 10px;">
</div>
</div>
</div>
</form>
</body>
</html>