-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
35 lines (35 loc) · 795 Bytes
/
404.php
File metadata and controls
35 lines (35 loc) · 795 Bytes
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
<?php include "_include.php"; ?>
<html>
<head>
<style type="text/css" media="screen">
#container {
text-align: center;
}
</style>
</head>
<body>
<div id="mainheader">
<span>
<h1>Nätverkstan!</h1>
</span>
<button>Admin</button>
</div>
<div id="bread"><a href="main.php">Hem</a></div>
<div id="admin-login" title="Logga in som Admin">
<p>
<form>
Användarnamn:<br/>
<input type="text" id="uname" /><br />
Lösenord:<br/>
<input type="password" id="pword" />
</form>
</p>
</div>
<div id="container">
<h2><?php echo "404"; ?></h2>
<h3>Kan inte hitta sidan du letade efter!</h3>
<h4>Gå tillbaka till <a href="main.php">Bottenvåningen</a> och pröva igen, eller välj en annan våning!</h4>
<br style="clear:both" />
</div>
</body>
</html>