-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush.html
More file actions
23 lines (22 loc) · 992 Bytes
/
push.html
File metadata and controls
23 lines (22 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="well" id="push-template">
<h3>Push</h3>
<div class="control-group">
<div class="controls">
<label class="control-label code">title</label>
<input type="text" class="input-xlarge" id="prop-title">
<p class="help-block">Title of push</p>
<label class="control-label code">body</label>
<input type="text" class="input-xlarge" id="prop-body">
<p class="help-block">Body of push</p>
<label class="control-label code">users</label>
<textarea class="input-xlarge" rows="5" id="prop-users" style="width: 600px; height: 150px;"></textarea>
<p class="help-block">Push to users</p>
</div>
</div>
<form class="form-horizontal" id="settings-form">
<div id="action-button-container">
<button class="btn btn-danger" type="button" id="push-button"><i class="icon-white icon-fire"></i> Push</button>
<button class="btn" type="button" id="cancel-button"><i class="icon-remove"></i> Cancel</button>
</div>
</form>
</div>