-
Notifications
You must be signed in to change notification settings - Fork 0
/
information.php
76 lines (68 loc) · 2.19 KB
/
information.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<title>DSI Tutoring | Information Page</title>
<style>
/* Adjustments for responsiveness */
.card {
margin: 15% auto;
/* Center the card horizontally */
border: 3px solid #000;
border-radius: 20px;
box-shadow: 10px 1px 10px #000;
padding: 20px;
}
@media (max-width: 767px) {
.card {
margin: 15% 5%;
/* Adjust margin for smaller screens */
}
}
@media (min-width: 768px) {
.card {
max-width: 600px;
/* Set a maximum width for larger screens */
margin: 15% auto;
/* Center the card horizontally */
}
}
</style>
</head>
<body>
<div class="row">
<div class="col-lg-12">
<div class="card">
<section>
<div class="card-body">
<div class="row">
<div class="col-lg-12">
<p class="text-dark h1"> <i class="fa fa-check-circle h1" style="color: green;"></i> Hello Student!</p>
</div>
</div>
<br>
<br>
<p class="text-dark">Your application has been submitted, pending verification
<br>
<br>
Thank you for your time!
</p>
<br>
<br>
<a class="btn btn-secondary" href="index.php">Back</a>
</div>
</section>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>