-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmessages.html
More file actions
50 lines (49 loc) · 1.19 KB
/
messages.html
File metadata and controls
50 lines (49 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<title>Messages</title>
<link rel="stylesheet" href="css/messages.css">
</head>
<body>
<div class="wrap">
<img src="images/Logo-SUSL.png" align="left">
<p align="right"><b>Sabaragamuwa University of Sri Lanka</b><br><b>Information System</b></p>
</div>
<div class="menu">
<div class="menucontent">
<ul>
<li><a href="Academic Records.html">Academic Records</a></li>
<li><a href="registration.html">Registration</a></li>
<li><a href="messages.html">Messages</a></li>
<li><a href="services.html">Services</a></li>
<li><a href=#>Log Out</a></li>
</ul>
</div>
<div class="content">
<h1>Messages</h1>
<table>
<tr>
<td>Your Name</td>
<td><input type="text" name="name" class="a"></td>
</tr>
<tr>
<td>Your E-mail</td>
<td><input type="email" name="email" class="a"></td>
</tr>
<tr>
<td>Message subject</td>
<td><textarea></textarea></td>
</tr>
<tr>
<td>Mark as private</td>
<td><input type="checkbox" name="mark"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="send" value="send"></td>
</tr>
</table>
<hr><a href=# align="right">Message Center</a>
</div>
</body>
</html>