Document support for address lookup
[infodrom.org/www.infodrom.org] / src / Linux / submit.wml
1 #include <infodrom.style>
2 #include <linux.style>
3
4 <page title="Upcoming Events Calendar">
5
6 <h1 align=center>Upcoming Events Calendar</h1>
7
8 <style type="text/css">
9 label {
10   display: block;
11   font-weight: bold;
12   font-size: 13px;
13   width: 85px;
14   text-align: left;
15   padding-left: 5px;
16   padding-top: 0px;
17   padding-bottom: 0px;
18   background-color: #1aa2fe;
19   color: white;
20 }
21 input {
22   display: block;
23   width: 100%;
24   margin-bottom: 10px;
25   border: 1px solid #1aa2fe;
26 }
27 input.button {
28   width: auto;
29   display: inline;
30   font-size: 13px;
31   font-weight: bold;
32   padding: 2px;
33   background-color: #d7d7d7;
34 }
35 input.button:hover {
36   border: 1px solid black;
37   background-color: #bfbfbf;
38 }
39 div.outer {
40   padding-left: 10%;
41   padding-right: 10%;
42 }
43 div.inner {
44   background: #e6e8fa;
45   border: 1px solid #000000;
46   padding: 20px;
47 }
48 </style>
49
50 <div class=outer>
51 <div class=inner>
52 <form method="post" action="submitit.php">
53 <label for="name">Name</label>
54 <input type="text" size="48" maxlength="64" id="name" name="name"><br class=none>
55 <label for="email">E-Mail</label>
56 <input type="email" size="48" maxlength="64" id="email" name="email"><br class=none>
57 <label for="event">Event</label>
58 <input type="text" size="48" maxlength="64" id="event" name="event"><br class=none>
59 <label for="event">City</label>
60 <input type="text" size="48" maxlength="64" id="city" name="city"><br class=none>
61 <label for="event">Country</label>
62 <input type="text" size="48" maxlength="64" id="country" name="country"><br class=none>
63 <label for="date">Date</label>
64 <input type="text" size="48" maxlength="64" id="date" name="date"><br class=none>
65 <label for="url">URL</label>
66 <input type="text" size="48" maxlength="150" id="url" name="url"><br class=none>
67 <label for="description">Description</label>
68 <input type="text" size="48" maxlength="164" id="description" name="description"><br class=none>
69 <div align="center" style="margin-bottom: -30px;">
70 <input type="submit" class=button value="Submit"> &nbsp; <input type="reset" class=button value="Reset">
71 </div>
72 </form>
73 </div>
74 </div>
75
76 <p>Download <a href="calendar.ics">iCal</a> or <a href="calendar.rdf">RSS</a> calendar file.</p>
77
78 </page>
79
80 # Local variables:
81 # mode: indented-text
82 # mode: auto-fill
83 # end: