-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
28 lines (26 loc) · 1.01 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
<?php
include 'header.php';
?>
<style>
.poop{
background-color: transparent;
}
</style>
<div class="poop">
<div class="px-1 py-5 my-5 text-center">
<h1 class="display-5 fw-bold">Personal Chatroom</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">This Chatroom is made by keeping in mind the privacy of my clients.<br>Previously I've creted a
<a href="https://hrisikeshpal.000webhostapp.com/" target="_blank" style="text-decoration:none"><b>Group Chatroom</b></a>
which is live, you can go and check that site too. <br>© VirusZzWarning 2022
</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a href="account.php?#register" class="btn btn-primary btn-lg px-4 gap-3">Register</a>
<a href="account.php?#login" class="btn btn-outline-secondary btn-lg px-4">Login</a>
</div>
</div>
</div>
</div>
<?php
include 'footer.php';
?>