~ubuntu-us-ma/us-ma-loco-site/trunk

« back to all changes in this revision

Viewing changes to templates/agenda/create.html

  • Committer: Martin Owens
  • Date: 2008-06-09 13:52:43 UTC
  • Revision ID: doctormo@delen-20080609135243-wclff7592e5pu08g
Start of website commiting

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
  <head>
 
3
    <title>Agenda Manager</title>
 
4
    <link rel="stylesheet" href="styles/agenda.css" type='text/css'/>
 
5
    <link rel="stylesheet" href="styles/page.css" type='text/css'/>
 
6
    <script type="text/javascript" src='js/agenda.js'></script>
 
7
  </head>
 
8
 
 
9
  <body onload="init()">
 
10
 
 
11
<div class='shadow'>
 
12
<div class='document'>
 
13
 
 
14
<h1>Meeting Agenda</h1>
 
15
 
 
16
<table class="properties">
 
17
  <tr>
 
18
    <th scope="row">Location: </th>
 
19
    <td><input type="text" name="date" value=""/></td>
 
20
  </tr>
 
21
  <tr>
 
22
    <th scope="row">Organiser: </th>
 
23
    <td>
 
24
      <select name="minutes" id="minutes">
 
25
        <option value=""></option>
 
26
        <option value="0">Martin Owens</option>
 
27
        <option value="1">Sarah Abbot</option>
 
28
        <option value="2">Mike Rushton</option>
 
29
      </select>
 
30
    </td>
 
31
  </tr>
 
32
  <tr>
 
33
    <th scope="row">Date: </th>
 
34
    <td><input type="text" name="date" value="2008-08-01"/></td>
 
35
  </tr>
 
36
  <tr>
 
37
    <th scope="row">Summery: </th>
 
38
    <td><input type="text" name="date" value=""/></td>
 
39
  </tr>
 
40
</table>
 
41
 
 
42
<div class="agenda" id="agenda"></div>
 
43
 
 
44
<h6>Note: This website will NOT work with Internet Explorer, of ANY kind or version</h6>
 
45
 
 
46
</div>
 
47
</div>
 
48
 
 
49
<div class="agendas">
 
50
  <form method="POST" action="/cgi-bin/agenda/create.pl">
 
51
    <input type="text" name="name" style="width: 120px; height: 26px;"/>
 
52
    <input type="submit" value="Create" style="height: 26px; width: 80px;"/>
 
53
  </form>
 
54
  <form method="POST" action="/cgi-bin/agenda/load.pl">
 
55
    <select name="items" style="width: 200px; height: 26px;">
 
56
      <option value="0">2008 July Meeting</option>
 
57
      <option value="1">2008 May Meeting</option>
 
58
    </select>
 
59
  </form>
 
60
</div>
 
61
 
 
62
<div class="copyright">Copyright 2008, Martin Owens; Licensed under Creative Commons CC-BY-SA-NC</div>
 
63
 
 
64
  </body>
 
65
</html>