-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.php
53 lines (38 loc) · 1.27 KB
/
setup.php
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
<?php
include('inc/inc.php');
include('inc/session.php');
include('inc/header.php');
?>
<div class="row-fluid marketing">
<div class="span6">
<form action="import.php" method="post" enctype="multipart/form-data">
<fieldset>
<legend>Geo Calendar Import</legend>
<p>Import your calendar data by uploading a file in iCal format</p>
<label>Event List Name</label>
<input type="text" placeholder="Required" name="name">
<label>Icon URL (57x57px)</label>
<input type="text" placeholder="Optionally specify an icon" name="icon">
<label>Description</label>
<input type="text" placeholder="Description of your calendar" name="description">
</fieldset>
<br />
<fieldset>
<legend>Specify an iCal File</legend>
<div style="margin-bottom: 20px;">
<label>From a file</label>
<input type="file" name="ical_file">
</div>
<div>
<label>From a URL</label>
<input type="text" placeholder="http://" name="ical_url">
</div>
</fieldset>
<br />
<button type="submit" class="btn">Submit</button>
<input type="hidden" name="action" value="save" />
</form>
</div>
</div>
<?php
include('inc/footer.php');