summaryrefslogtreecommitdiff
path: root/views/profile.ejs
blob: 286527488ee69ddbcbef6333645dd46322515abc (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html>
<head>
	<title>vvalls</title>
	[[ include partials/meta ]]
</head>
<body class="loading">
<div class="rapper page">
	<a href="/front.html" class="logo"><img src="assets/img/logo4.svg"></a>
	<a href="/edit-profile.html" class="topLink editProfile">edit profile <span class="icon-ios7-gear-outline \"></span></a>
	
	<table class="profilepage">
		<tr>
			<td class="border profilePic">
				<!--IF NO PIC
				<span class="icon-ios7-person-outline"></span>
				-->
			</td>
			<td class="bio">
				<h2>Ivan Sidorov</h2>
				<span>
					New York City &middot; <a href="#">http://example.com/</a> &middot; <a href="#">@twitter</a>
				</span>
			</td>
		</tr>
	</table>
	
	<h1>Ivan has 4 projects</h1>
	
	<table>
		<tr>
			<td class="border room1">
				<div class="editBtn">edit</div>
				<div class="formHolder fixed animate">
					<span class="bigClose">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="element_3">Name:</label>
									<div>
										<input id="element_3_1" name= "element_3_1" class="element text" type="text" maxlength="255" value="Idea For Show"/>
									</div>
								</li>		
								<li>
									<label class="description" for="element_2">Description:</label>
									<div>
										<textarea placeholder="short description"></textarea>
									</div> 
								</li>		
								<li>
									<label class="description" for="element_5">URL:</label>
									<div>
										<input id="element_5" name="element_5" 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="opt" checked="checked">
										<label class="radio-group__label" for="opt_1">
											Everyone
										</label>

										<input id="opt_2" class="radio-group__option" type="radio" name="opt">
										<label class="radio-group__label" for="opt_2">
											Just for me
										</label>
									</div>
								</li>		
								<li class="buttons">
									<input type="hidden" name="form_id" value="795208" />

									<input class="button_text" type="submit" name="submit" value="Submit" />
								</li>
								<hr>
								<li class="subButtons">
									<a href="#">Clone Project</a>
									<a href="#">Delete Project</a>
								</li>
							</ul>
						</form>
					</div>
				</div>
				<a href="/" class="roomName">Idea for Show</a>
			</td>
			<td class="border room1">
				<div class="editBtn">edit</div>
				<a href="/" class="roomName">Thing I'm Working On</a>
			</td>
			<td class="room1">
				<div class="editBtn">edit</div>
				<a href="/" class="roomName">Pace Gallery</a>
			</td>
		</tr>
	</table>
	
	<table>
		<tr>
			<td class="room1">
				<div class="editBtn">edit</div>
				<a href="/" class="roomName">Pace Gallery</a>
			</td>
		</tr>
	</table>
	
	<a href="#loadmore" class="viewMore" id="createProject">create project</a>
	
	[[ include partials/footer ]]

</div>


</body>
[[ include partials/scripts ]]
</html>