summaryrefslogtreecommitdiff
path: root/views/projects/layouts-modal.ejs
blob: 8754617330e7d7778129b0494704cc865533c9f1 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<div class="mediaDrawer fixed animate layouts">
	<span class="close">X</span>
	<div class="box">
		
		<div class="templates">
			<h1>Edit Room Layouts</h1>
			<div class="templates-list">
			</div>
		</div>
		<div class="no-templates">
			There are no room layouts available. Please <a href="/layout/new">create a new one.</a>
		</div>
		<form>
			<input data-role="create-new-layout" class="button_text" type="submit" value="New Layout">
		</form>
	</div>
</div>

<div class="mediaDrawer fixed animate projects">
	<span class="close">X</span>
	<div class="box">
		
		<div class="templates">
			<h1>Your Projects</h1>
			<div class="templates-list">
			</div>
		</div>
		<div class="no-templates">
		</div>
		<form>
			<input class="button_text" type="submit" value="New Project">
		</form>
	</div>
</div>

<div class="mediaDrawer fixed animate newProject">
	<span class="close">X</span>
	<div class="box">
		
    <h2>Choose Room Template</h2>
		<div class="templates">
			<div class="templates-list">
			</div>
		</div>
		<div class="no-templates">
			There are no room layouts available. Please <a href="/layout/new">create a new one.</a>
		</div>
	</div>
</div>