This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
task.html
57 lines (54 loc) · 1.45 KB
/
task.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Create an event</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<table cellspacing="0" cellpadding="0">
<tr>
<th></th>
<th>Create an event</th>
<th></th>
</tr>
<tr class="gradient">
<td colspan="3"></td>
</tr>
<tr>
<td class="lable" colspan="3">Event name</td>
</tr>
<tr>
<td colspan="3">Mel's birthday celebration</td>
</tr>
<tr>
<td class="lable" colspan="3">From</td>
</tr>
<tr>
<td colspan="3"><input type="text" value="Fri, Feb 10 2014"><input type="text" value="07:30 PM"></td>
</tr>
<tr>
<td class="error" colspan="3">Date occurs in the past</td>
</tr>
<tr>
<td class="lable" colspan="3">To</td>
</tr>
<tr>
<td colspan="3"><input type="text" value="Fri, Feb 10 2014"><input type="text" value="11:30 PM"></td>
</tr>
<tr>
<td class="error" colspan="3">Date occurs in the past</td>
</tr>
<tr>
<td class="lable" colspan="3">Description</td>
</tr>
<tr>
<td colspan="3">Come help celebrate Mel's birthday with dinner, drinks and putt-putt.</td>
</tr>
<tr>
<td colspan="3"><a href="./frames/index.html" target="iframe_log"><img class="button" src="./images/success-icon-23194.png"></a></td>
</tr>
</table>
<iframe name="iframe_log"></iframe>
</body>
</html>