|
1 | 1 | <div class="form_row">
|
2 |
| - <input id="say" type="text" name="title" placeholder="Event Title" required> |
3 |
| - <input type="button" id="speak" name="speak" value="Speak it!"> |
4 |
| -</div> |
5 |
| -<div> |
6 |
| - <!-- Voices gets its own row for being so wide! --> |
7 |
| - <div class="field" id="voices"> |
8 |
| - <label for="voice">Voice</label> |
9 |
| - <select id="voice" name="voice"></select> |
10 |
| - </div> |
11 |
| -</div> |
12 |
| -<div class="form_row panel"> |
13 |
| - <div class="field"> |
14 |
| - <label for="volume">Volume</label> |
15 |
| - <input type="range" id="volume" name="volume" min="0" max="1" step="0.01" value="0.5"> |
16 |
| - <output for="volume"></output> |
17 |
| - </div> |
18 |
| - <div class="field"> |
19 |
| - <label for="pitch">Pitch</label> |
20 |
| - <input type="range" id="pitch" name="pitch" min="0" max="2" step="0.01" value="1"> |
21 |
| - <output for="pitch"></output> |
22 |
| - </div> |
23 |
| - <div class="field"> |
24 |
| - <label for="rate">Rate</label> |
25 |
| - <input type="range" id="rate" name="rate" min="0.1" max="10" step="0.1" value="1"> |
26 |
| - <output for="rate"></output> |
27 |
| - </div> |
| 2 | + <input id="say" type="text" name="title" placeholder="Event Title" required> |
| 3 | + <input type="button" id="speak" name="speak" value="Speak it!"> |
| 4 | +</div |
| 5 | +> |
| 6 | +<div class="form_row"> |
| 7 | + <div class="field" id="voices"> |
| 8 | + <label for="voice">Voice</label> |
| 9 | + <select id="voice" name="voice"></select> |
| 10 | + </div> |
| 11 | + <div class="field"> |
| 12 | + <label for="volume">Volume</label> |
| 13 | + <input type="range" id="volume" name="volume" min="0" max="1" step="0.01" value="0.5"> |
| 14 | + <output for="volume"></output> |
| 15 | + </div> |
| 16 | + <div class="field"> |
| 17 | + <label for="pitch">Pitch</label> |
| 18 | + <input type="range" id="pitch" name="pitch" min="0" max="2" step="0.01" value="1"> |
| 19 | + <output for="pitch"></output> |
| 20 | + </div> |
| 21 | + <div class="field"> |
| 22 | + <label for="rate">Rate</label> |
| 23 | + <input type="range" id="rate" name="rate" min="0.1" max="10" step="0.1" value="1"> |
| 24 | + <output for="rate"></output> |
| 25 | + </div> |
28 | 26 | </div>
|
| 27 | + |
29 | 28 | <div class="form_row">
|
30 |
| - <label for="start_date">Start Date:</label> |
31 |
| - <input id="start_date" type="date" name="start_date" placeholder="Start Date" required> |
32 |
| - <label for="start_time">Start Time:</label> |
33 |
| - <input id="start_time" type="time" name="start_time" placeholder="Start Time" required> |
| 29 | + <label for="start_date">Start Date:</label> |
| 30 | + <input id="start_date" type="date" name="start_date" placeholder="Start Date" required> |
| 31 | + <label for="start_time">Start Time:</label> |
| 32 | + <input id="start_time" type="time" name="start_time" placeholder="Start Time" required> |
34 | 33 | </div>
|
| 34 | + |
35 | 35 | <div class="form_row">
|
36 |
| - <label for="end_date">End Date:</label> |
37 |
| - <input id="end_date" type="date" name="end_date" placeholder="End Date" required> |
38 |
| - <label for="end_time">End Time:</label> |
39 |
| - <input id="end_time" type="time" name="end_time" placeholder="End Time" required> |
| 36 | + <label for="end_date">End Date:</label> |
| 37 | + <input id="end_date" type="date" name="end_date" placeholder="End Date" required> |
| 38 | + <label for="end_time">End Time:</label> |
| 39 | + <input id="end_time" type="time" name="end_time" placeholder="End Time" required> |
40 | 40 | </div>
|
| 41 | + |
41 | 42 | <div class="form_row">
|
42 |
| - <label for="location_type">Location Type:</label> |
43 |
| - <select id="location_type" name="location_type" required> |
44 |
| - <option value="" disabled selected>Type</option> |
45 |
| - <option value="vc_url">VC URL</option> |
46 |
| - <option value="address">Address</option> |
47 |
| - </select> |
48 |
| - <input type="text" name="location" placeholder="VC URL/Location"> |
| 43 | + <label for="location_type">Location Type:</label> |
| 44 | + <select id="location_type" name="location_type" required> |
| 45 | + <option value="" disabled selected>Type</option> |
| 46 | + <option value="vc_url">VC URL</option> |
| 47 | + <option value="address">Address</option> |
| 48 | + </select> |
| 49 | + <input type="text" name="location" placeholder="VC URL/Location"> |
49 | 50 | </div>
|
| 51 | + |
50 | 52 | <div class="form_row textarea">
|
51 |
| - <textarea id="say" name="description" placeholder="Description"></textarea> |
| 53 | + <textarea id="say" name="description" placeholder="Description"></textarea> |
| 54 | +</div> |
| 55 | + |
| 56 | +<div class="form_row"> |
| 57 | + <label for="event_type">All-day:</label> |
| 58 | + <select id="event_type" name="event_type" required> |
| 59 | + <option value="on">Yes</option> |
| 60 | + <option value="off" selected>No</option> |
| 61 | + </select> |
52 | 62 | </div>
|
| 63 | + |
53 | 64 | <div class="form_row">
|
54 |
| - <div class="form_row_start"> |
55 |
| - <label for="color">Color:</label> |
56 |
| - <select id="color" name="color"> |
57 |
| - <option value="red">Red</option> |
58 |
| - <option value="green">Green</option> |
59 |
| - <option value="blue">Blue</option> |
60 |
| - </select> |
61 |
| - </div> |
62 |
| - <div class="form_row_end"> |
63 |
| - <label for="availability">Availability:</label> |
64 |
| - <select id="availability" name="availability"> |
65 |
| - <option value="free">Free</option> |
66 |
| - <option value="busy" selected>Busy</option> |
67 |
| - </select> |
68 |
| - <label for="privacy">Privacy:</label> |
69 |
| - <select id="privacy" name="privacy"> |
70 |
| - <option value="private">Private</option> |
71 |
| - <option value="public" selected>Public</option> |
72 |
| - </select> |
73 |
| - </div> |
| 65 | + <div class="form_row_start"> |
| 66 | + <label for="color">Color:</label> |
| 67 | + <select id="color" name="color"> |
| 68 | + <option value="red">Red</option> |
| 69 | + <option value="green">Green</option> |
| 70 | + <option value="blue">Blue</option> |
| 71 | + </select> |
| 72 | + </div> |
| 73 | + |
| 74 | + <div class="form_row_end"> |
| 75 | + <label for="availability">Availability:</label> |
| 76 | + <select id="availability" name="availability"> |
| 77 | + <option value="free">Free</option> |
| 78 | + <option value="busy" selected>Busy</option> |
| 79 | + </select> |
| 80 | + |
| 81 | + <label for="privacy">Privacy:</label> |
| 82 | + <select id="privacy" name="privacy"> |
| 83 | + <option value="private">Private</option> |
| 84 | + <option value="public" selected>Public</option> |
| 85 | + </select> |
| 86 | + |
| 87 | + <label for="is_google_event">Google event:</label> |
| 88 | + <select id="is_google_event" name="is_google_event"> |
| 89 | + <option value="True">Yes</option> |
| 90 | + <option value="False" selected>No</option> |
| 91 | + </select> |
| 92 | + |
| 93 | + </div> |
74 | 94 | </div>
|
75 | 95 |
|
0 commit comments