-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
23 lines (22 loc) · 847 Bytes
/
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
<?php
require('class/header.php');
?>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center inner">
<h1 class="black">Welcome to deserted place</h1>
<h2 class="animated fadeInUp delay-05s black">Just nothing here</h2>
</div>
</div>
<div class="row" style="max-width:300px; margin-left: auto; margin-right: auto;">
<div class="col-md-6 text-center animated fadeInUp delay-15s button">
<a href="login.php" class="learn-more-btn" style="color: #ddd"> Login </a>
</div>
<div class="col-md-6 text-center animated fadeInUp delay-15s button">
<a href="register.php" class="learn-more-btn" style="color: #ddd">Register</a>
</div>
</div>
</div>
<?php
require('class/footer.php');
?>