-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode_tester.php
101 lines (46 loc) · 1.65 KB
/
code_tester.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<title>Code Tester</title>
<link rel="icon" href="images/favicon.ico" type="image/ico"/>
<link rel="icon" href="images/favicon.gif" type="image/gif"/>
<link rel="icon" href="images/favicon.png" type="image/png"/>
<link rel="stylesheet" href="styles/styles.css" />
</head>
<body>
<div id="wrapper">
<header>
<img src="/images/header.png" alt="Joy Of Code Intro To HTML" />
<nav>
<ul class="nav nav-pills">
<li><a href="/index.html"><i class="icon-home"></i>Home Room</a></li>
<li><a href="/frontoffice"><i class="icon-info-sign"></i>Front Office</a></li>
<li class="current"><a href="code_tester.php"><i class="icon-pencil"></i><strong>Code Tester</strong></a></li>
<li><a href="workspace.php"><i class="icon-cog"></i>Work Space</a></li
><li><a href="/logout.php"><i class="icon-off"></i>Sign Out</a></li>
</ul>
</nav>
</header>
<div class="clearfix">
<section id="main">
<h1>Code Tester</h1>
<div id="how_to_try_box">
<p>Test Your Code In This Box - The Code Tester</p>
<form method="post"
action="http://www.joyofcode.com/cgi-bin/code_tester_ws2.cgi" target="view">
<textarea name="Html" cols="50" rows="10">
</textarea>
<br />
<button type="submit" name="submit" class="btn btn-primary">Give It A Try</button>
<p>Here's What You Did</p>
<iframe scrolling="auto" name="view" title="This box contains the results of the input of the textarea box."></iframe>
<br />
<button type="reset" id="tryAgain" name="reset" class="btn">Try Again</button>
</form>
</div>
</section>
</div> <!-- ned clearfix -->
<?php include "includes/footer.php" ?>
</div> <!-- end wrapper -->
</body>
</html>