summaryrefslogtreecommitdiff
path: root/views/projects/edit-project.ejs
blob: 0441b9f60513d5cf4a83a2027eecf20a6114276a (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
50
51
52
<div class="mediaDrawer fixed animate editProject">
	<span class="close">X</span>
	<div class="formInner">
		<form enctype="multipart/form-data" method="post">
			<ul>
				<li class="section_break">
					<h3>Edit Room</h3>
				</li>
				<li>
					<label class="description" for="name">Name:</label>
					<div>
						<input id="name" name= "name" class="element text" type="text" maxlength="255" value="Idea For Show">
					</div>
				</li>		
				<li>
					<label class="description" for="description">Description:</label>
					<div>
						<textarea placeholder="short description" id="description"></textarea>
					</div> 
				</li>		
				<li>
					<label class="description" for="url">URL:</label>
					<div>
						<input id="url" name="slug" class="element text medium" type="text" maxlength="255" value="http://vvalls.com/t987"> 
					</div> 
				</li>		
				<li>
					<label class="description" for="element_4">Privacy:</label>
					<div class="radio-group">
						<input id="opt_1" class="radio-group__option" type="radio" name="privacy" checked="checked">
						<label class="radio-group__label" for="opt_1">
							Everyone
						</label>

						<input id="opt_2" class="radio-group__option" type="radio" name="privacy">
						<label class="radio-group__label" for="opt_2">
							Just for me
						</label>
					</div>
				</li>		
				<li class="buttons">
					<input class="button_text" type="submit" value="Submit" >
				</li>
				<hr>
				<li class="subButtons">
					<a href="#">Clone Project</a>
					<a href="#">Delete Project</a>
				</li>
			</ul>
		</form>
	</div>
</div>