-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (28 loc) · 824 Bytes
/
index.php
File metadata and controls
37 lines (28 loc) · 824 Bytes
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
<?php
include 'dbh.php';
?>
<!DOCTYPE html>
<html>
<div class='image'>
</div>
<head>
<title>Welcome</title>
<link href="./css/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class='container'>
<h1>Welcome to Connect Portal</h1>
<h2>Please tell us about yourself</h2>
<form action="service_selection.php" method="POST">
<label for="servicetype">Who are you?</label>
<select name="servicetype">
<option value="0">Select service:</option>
<option value="student">Student</option>
<option value="employee">Employee</option>
</select>
<br><br>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>