-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart_screen.php
52 lines (44 loc) · 1.18 KB
/
start_screen.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title>Start screen</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Welcome to Albin's simple server</h1>
<p>Who are you?</p>
<form action="login.php" method="post">
<table>
<tr>
<td align="left">Username:</td>
<td align="left"><input type="text" name="username" /><br></td>
</tr>
<tr>
<td align="left">Name:</td>
<td align="left"><input type="text" name="name" /><br></td>
</tr>
<tr>
<td align="left">Age:</td>
<td align="left"><input type="number" name="age" /><br></td>
</tr>
<tr>
<td align="left">Email:</td>
<td align="left"><input type="text" name="email" /><br></td>
</tr>
</table>
<input type="submit">
</form>
<form>
</form>
<?php
require 'config/database.php';
?>
</div>
</body>
</html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>