-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
59 lines (48 loc) · 2.08 KB
/
admin.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Tech</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="col-12 mb-2 vh-100">
<div class="container h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="card col-lg-6 bg-secondary ">
<div class=" p-md-4">
<div class="text-center">
<img src="resources/logo-no-background.png" style="width: 190px;" alt="logo">
<h4 class="mt-2 mb-5">New Tech Team Admin LogIn</h4>
</div>
<p>Please login to your account</p>
<div class="form-outline mb-4">
<input type="text" class="form-control" placeholder="Username" />
<label class="form-label">Username</label>
</div>
<div class="form-outline mb-4">
<input type="email" class="form-control" placeholder="Email" />
<label class="form-label">Email</label>
</div>
<div class="form-outline mb-3">
<input type="password" class="form-control" placeholder="Password" />
<label class="form-label">Password</label>
</div>
<div class="row text-center px-3 mb-4 ">
<button class="btn btn-primary mb-3">Log in</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="col-12 bg-secondary mt-5 pt-4 pb-2">
<div class="container">
<div class="text-center">
<h6>© New tech Techonologes 2023</h6>
</div>
</div>
</section>
</body>
</html>