-
Notifications
You must be signed in to change notification settings - Fork 0
/
registrera.php
44 lines (30 loc) · 909 Bytes
/
registrera.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
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Registrera konto - Vad ska jag laga?</title>
<link rel="icon" type="image/png" href="img/icon.png">
<!-- Init-file -->
<?php require_once 'core/init.php'; ?>
<!-- CSS-links -->
<?php include 'includes/data/css-links.php'; ?>
</head>
<?php
$user = new User();
$token = Token::generate();
?>
<body>
<!-- Navbar -->
<?php include 'includes/navbar.php'; ?>
<!-- Main function -->
<?php include 'includes/modules/registrera.php'; ?>
<!-- Footer -->
<?php include 'includes/footer.php'; ?>
<!-- JavaScript-links -->
<?php include 'includes/data/js-links.php'; ?>
<script src="js/register.js"></script>
</body>
</html>