-
Notifications
You must be signed in to change notification settings - Fork 0
/
LandingPage.html
27 lines (27 loc) · 1003 Bytes
/
LandingPage.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<div class="container">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Landing Page</title>
<link rel="stylesheet" type="text/css" href="style2.css">
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<h1> WELCOME </h1>
<h2> Event Registration website </h2>
<h3> Are you an Admin or participant? </h3>
</div>
</head>
<body>
<div class="container first">
<form action="Admin_Registration_and_Login_page.php" method="post">
<button type="submit" class="btn.group"> Admin Page </button>
</form>
<form action="Participant_Login_and_Registration_page.php" method="post">
<button type="submit" class="btn.group"> Participant Page </button>
</form>
</div>
</body>
</html>