-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.67 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Very simple Self-Service Portal for school project for Virtualization Methods 2" />
<meta name="author" content="Thomas van den Nieuwenhoff" />
<title>VM2 Portaal</title>
<!-- Bootstrap core CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<!-- Custom styles for this template -->
<link href="/styles/cover.css" rel="stylesheet" />
</head>
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand">VM2 Portaal</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="#">Home</a>
<a class="nav-link" href="/account/signin.php">Sign In</a>
<a class="nav-link" href="/account/create.php">Sign Up</a>
</nav>
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">Welcome.</h1>
<p class="lead">
This is a very simple Self-Service portal I made for school.
</p>
<p class="lead">
<a href="/account/create.php" class="btn btn-lg btn-secondary">Get started</a>
</p>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Cover page for VM2, by Thomas van den Nieuwenhoff</a>.</p>
</div>
</footer>
</div>
</body>
</html>