-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
58 lines (46 loc) · 2.71 KB
/
index.php
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
<!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>RA BANKING</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css" integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js" integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<!---------- BACKGROUND IMG ---------->
<div class="overlay"></div>
<img src="./assets/img/bank.jpg">
<div class="container h-100">
<div class="d-flex h-100">
<div class="w-50">
<!---------- CARD FOR FORM ---------->
<div class="container">
<form class="card mt-5 px-3 py-3 container bg-transparent" action="transacs.php" style="width: 35rem; height: 15rem;" method = "POST">
<div class="card-header h3 text-center fw-bold fs-2 mb-5 text-white">WELCOME TO RA BANKING</div>
<div class="row align-items-center">
<!---------- USERNAME ---------->
<div class="row mt-5 text-white">
<div class="mt-4">
<div class="box">
<p class="text-center mt-5 mb-3">Please enter your username</p>
<input type="text" class="" id="username" name="username" placeholder="Username">
<input type="submit" name="submit" value="Go">
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
</body>
</html>