-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CashGuard</title>
<link rel="icon" href="https://cdn-icons-png.flaticon.com/128/6828/6828649.png">
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/style.css">
<link
rel="stylesheet"
type="text/css"
href="https://unpkg.com/@phosphor-icons/[email protected]/src/thin/style.css"
/>
</head>
<body>
<div class="d-flex justify-content-center align-items-center vh-100 p-5 bg-secondary">
<div class="card bg-light col-md-3 col-12 p-md-5">
<div class="card-body">
<form action="" class="d-flex flex-column gap-2 align-items-center p-2">
<i class="ph-thin ph-user-circle sfs-10 mb-4 "></i>
<!-- <img src="./img/user3.gif" alt="" width="200vw"> -->
<input id="uname" type="text" placeholder="username" class="my-form-control bg-dark text-white col-12">
<input id="upass" type="password" placeholder="password" class="my-form-control bg-dark text-white col-12">
<button type="button" onclick="signin()" class="btn btn-primary col-12 mt-2">signin</button>
<p class="sfs-0_75 mt-3">don't have an account ? <span><a href="./signup.html">Signup</a></span></p>
</form>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="./signin.js"></script>
</body>
</html>