-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.php
More file actions
60 lines (46 loc) · 1.43 KB
/
Copy pathguide.php
File metadata and controls
60 lines (46 loc) · 1.43 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
57
58
59
60
<?php
$my_site_title = 'Lingorator ';
?>
<!DOCTYPE HTML>
<html>
<head>
<title><?php echo $my_site_title; ?></title>
<meta charset="utf-8">
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/8bit-wonder" type="text/css"/>
<link rel="stylesheet" href="../css/site_main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/JavaScript" src="js/forms.js"></script>
</head>
<body>
<div id="header" align="center">
<div id="login" align ="right">
<!-- adapted from http://jsfiddle.net/JoshMesser/vbMw3/ -->
<div id="overlay1">
<a href="#o" class="close">×</a>
<?php include_once 'includes/login_form_frame.php'; ?>
</div>
<div id="mask" onclick="document.location='#o';"></div> <!-- the only javascript -->
<a href="#overlay1" id="open-overlay">Login</a>
</div>
<div id="headertext1">
<h1><?php echo $my_site_title; ?></h1>
<div id="headertext2">
<h2>The Interactive Language Generator</h2>
</div>
</div>
</div>
<div id="nav">
<br>
<button type="button" id="nav_button" onclick="location.href='index.php';">Home</button>
<br>
<br>
<button type="button" id="nav_button" onclick="location.href='about.php';">About</button>
<br>
<br>
<button type="button" id="nav_button_current">Guide</button>
<br>
<br>
<a href="#overlay1" id="open-overlay2">Create a language</a>
</div>
</body>
</html>