-
Notifications
You must be signed in to change notification settings - Fork 0
/
teacherHome.php
63 lines (52 loc) · 1.42 KB
/
teacherHome.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="view.css" media="all">
<title>Template Wizard - iNarrate</title>
<script src="scripts/jquery-1.5.js" type="text/javascript"></script>
<script src="scripts/jquery-validate/jquery.validate.pack.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$("#loginForm").validate();
});
</script>
</head>
<body>
<img id="top" src="top.png" alt="">
<div id="form_container">
<form id="templatewizardForm" name="templatewizardForm" method="POST" action="loginproc.php">
<div class="form_description">
<h2>Template Wizard - iNarrate</h2>
<p></p>
</div>
<ul >
<li id="li_1" >
<center>
<table border="0">
<tr>
<td>
<a href="http://ss12.vairavanlaxman.com/Prasanna/jquery.php"><button style="width:150;height:65" onClick=""><b>Create a New Story</b></button></a>
</td>
</tr>
<tr>
<td>
<a href="../searchStory.php" ><button style="width:150;height:65" onClick="listproc.php"><b>Search for Story</b></button></a>
</td>
</tr>
<tr>
<td>
<a href="../studentProfile.php" ><button style="width:150;height:65"><b>Student Profile</b></button></a>
</td>
</tr>
<tr>
<td>
<a href="logout.php" ><button style="width:150;height:65"><b>Logout</b></button></a>
</td>
</tr>
</table>
</center>
</li>
</ul>
</form>
</div>
</body>
</html>