-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdashboard.php
79 lines (78 loc) · 2.27 KB
/
dashboard.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
77
78
79
<?php
session_start();
$_SESSION["user_id"];
require_once('db.php');
include_once("dashboard-header.php");
?>
<head>
<style>
section.content {
padding: 40px 10px;
text-align: center;
}
.header-text {
font-weight: bolder;
font-size: 3em;
text-transform: uppercase;
font-family: "Work Sans", sans-serif;
margin-bottom: 5px;
}
.header-text-2x {
font-size: 1.5em;
position: relative;
margin: 0;
top: -40px;
background-color: #bdbdbd;
display: inline-block;
color: #fff;
padding: 5px 15px;
border-radius: 60%;
}
.hd-1 {
position: relative;
right: -20px;
}
.description {
display: inline-block;
max-width: 680px;
position: relative;
top: -20px;
}
.form-control {
display: inline-block;
width: 370px;
}
.form-control:focus {
box-shadow: none;
}
</style>
</head>
<body>
<div class="container">
<section class="content">
<div class="row text-center">
<div class="col-xs-12 col-sm-12">
<h2>Get Prepared</h2>
<h1 class="header-text">HNG Internship</h1>
<h1 class="header-text header-text-2x">5</h1>
</div>
</div>
<p class="description">
Cobaltums sunt mensas de albus zeta. Ubi est rusticus particula?
Paluss resistere in antenna! Ubi est mirabilis animalis?
Vae, lotus calcaria! Cum resistentia favere, omnes lunaes quaestio azureus, noster rectores.
</p>
<div>
<div class="col-xs-12">
<h5 style="color: #2196F3;">Be the first to receive the HNG Internship 5 date</h5>
<form action="dashboard.php" method="get">
<input type="text" placeholder="Your Email" name="email" class="form-control" required>
<button type="submit" class="btn btn-primary">Subscribe</button>
</form>
</div>
</div>
</section>
</div>
<?php
include_once("footer.php");
?>