-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
22 lines (22 loc) · 826 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome Page</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">Welcome to Our Website</h1>
<p class="text-center mt-3">
This is a dummy homepage. Feel free to register or log in to explore the features of our website.
</p>
<div class="text-center mt-4">
<a href="register.php" class="btn btn-primary btn-lg mx-2">Register</a>
<a href="login.php" class="btn btn-success btn-lg mx-2">Login</a>
</div>
</div>
</body>
</html>