-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (49 loc) · 2.8 KB
/
index.html
File metadata and controls
56 lines (49 loc) · 2.8 KB
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
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<title>HVSYS Secure Webserver</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark sticky-top">
<div class="container-xl">
<a class="navbar-brand" href="/">HVSYS_Project_1_15</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarsExample07XL" aria-controls="navbarsExample07XL">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExample07XL">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/guestbook.php">Guestbook</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/snake.html">Snake Game JS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/domiK66/hvsys">Github</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container" role="main">
<div class="p-5 mb-4 bg-light rounded-3">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold">HVSYS Secure Webserver</h1>
<p class="col-md-8 fs-4">hosted on the Google Cloud with Apache2, Lets Encrypt Certificate, MYSQL database, PHP C-R-U-D functionality, JS minigame & Bootstrap </p>
<a class="btn btn-primary btn-lg" href="/guestbook.php" type="button">Guestbook</a>
<a class="btn btn-primary btn-lg" href="/snake.html" type="button">Snake Game JS</a>
</div>
</div>
<p class="mt-4">Project by Dominik Kainz, Mensur Bukarevic & Lukas Dworacek
</p>
<p>Copyright by <a href="https://www.fh-joanneum.at">www.fh-joanneum.at</a></p>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
</body>
</html>