-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistratie.php
36 lines (30 loc) · 1.24 KB
/
registratie.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
<!doctype html>
<html lang="nl">
<head>
<title>SecretAnimal</title>
<?php require_once 'backend/config.php'; ?>
<meta charset="utf-8">
<meta name="description" content="StoringApp voor technische dienst van DeveloperLand">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="<?php echo $base_url; ?>/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="<?php echo $base_url; ?>/css/normalize.css">
<link rel="stylesheet" href="<?php echo $base_url; ?>/css/main.css">
</head>
<header>
<div class="container1">
<a href="<?php echo $base_url; ?>/index.php"><i class="fa-solid fa-house"></i> Home pagina</a>
</div>
</header>
<body>
<div class="container home">
<form action="backend/registratieController.php" method="POST">
<input type="hidden" name="action" value="registreren">
<input type="text" id="username" name="username" placeholder="user">
<input type="password" id="password" name="password" placeholder="pass">
<!-- nog een submit-knop -->
<input type="submit" value="registreren">
</form>
<img src="img/logo-big-fill-only.png" alt="Logo van Developerland">
</div>
</body>
</html>