summaryrefslogtreecommitdiff
path: root/views/partials/confirm-modal.ejs
blob: 5b2ff464b72677f123ebe78f75ab392004e2f5ef (plain)
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
<div class="mediaDrawer fixed animate alert">
	<div class="box">
		<form>
			<span class="message"></span>
			<br>
			<button class="ok">OK</button>
		</form>
	</div>
</div>

<div class="mediaDrawer fixed animate confirm">
	<span class="close">X</span>
	<div class="box">
		<form>
			<span class="question"></span>
			<br>
			<button class="yes">OK</button>
			<button class="no">Cancel</button>
		</form>
	</div>
</div>

<div class="mediaDrawer fixed animate error">
	<span class="close">X</span>
	<div class="box">
		<form>
			Your submission had errors:
			<br>
			<span class="errorList"></span>
			<br>
			<button class="ok">OK</button>
		</form>
	</div>
</div>