-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd.php
32 lines (30 loc) · 1.34 KB
/
add.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
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
require_once('class.ThemePage.php');
$page = new ThemePage('Theme');
$page->body .= '
<div id="content">
<fieldset id="request_set">
<legend>Theme Submission</legend>
<div class="form-group">
<label for="name" class="col-sm-2 control-label">Theme:</label>
<div class="col-sm-10">
<input class="form-control" id="name" name="name" type="text" required/>
</div>
</div>
<div class="clearfix visible-sm visible-md visible-lg"></div>
<div class="alert alert-info" role="alert"><b>NOTE:</b> Theme presentations will be limited to 2 minutes!</div>
<div class="clearfix visible-sm visible-md visible-lg"></div>
<div class="form-group">
<label for="presenting" class="col-sm-2 control-label">Presenting:</label>
<div class="col-sm-10">
<input class="form-control" id="presenting" name="presenting" type="checkbox" data-toggle="tooltip" data-placement="top" title="I plan to present this theme at Townhall"/>
</div>
</div>
<button type="submit" name="submit" class="btn btn-primary">Submit Request</button>
</fieldset>
</div>
';
$page->printPage();
?>