summaryrefslogtreecommitdiff
path: root/views/pages/profile_form.ejs
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-12-14 06:48:53 +0100
committerJules Laplace <julescarbon@gmail.com>2017-12-14 06:48:53 +0100
commitf9a0743696c5e21d81ae0e215e36358788e708df (patch)
tree07bc648b9b4f16999caa669ed5faf40f92d0345f /views/pages/profile_form.ejs
parent54b4af27409fba0032faf4c8bed825ce2bc71cce (diff)
profile form
Diffstat (limited to 'views/pages/profile_form.ejs')
-rw-r--r--views/pages/profile_form.ejs84
1 files changed, 84 insertions, 0 deletions
diff --git a/views/pages/profile_form.ejs b/views/pages/profile_form.ejs
new file mode 100644
index 0000000..01b0fae
--- /dev/null
+++ b/views/pages/profile_form.ejs
@@ -0,0 +1,84 @@
+<% include ../partials/header %>
+
+<div class="subtitle">
+ <a href="/">&lt; Home</a> &middot; <a href="/profile">View profile</a></span>
+</div>
+
+<div id="content">
+
+<div id="profile_form">
+ <form>
+ <div>
+ <label for="profile-realname">Real name</label>
+ <input type="text" id="profile-realname" name="realname">
+ </div>
+
+ <div>
+ <label for="profile-location">Location</label>
+ <input type="text" id="profile-location" name="location">
+ </div>
+
+ <div>
+ <label for="profile-email">Email address</label>
+ <input type="text" id="profile-email" name="email">
+ </div>
+
+ <div>
+ <label for="profile-phone">Phone</label>
+ <input type="text" id="profile-phone" name="phone">
+ </div>
+ <br>
+
+ <div>
+ <label for="profile-pic">Profile picture</label>
+ <div>
+ <img id="profile-pic-embed" />
+ <input type="file" id="profile-pic" name="pic">
+ </div>
+ </div>
+ <br>
+
+ <div>
+ <label for="profile-webpage">Website</label>
+ <input type="text" id="profile-webpage" name="webpage">
+ </div>
+
+ <div>
+ <label for="profile-fb">Facebook</label>
+ <input type="text" id="profile-fb" name="fb">
+ </div>
+
+ <div>
+ <label for="profile-tw">Twitter</label>
+ <input type="text" id="profile-tw" name="tw">
+ </div>
+ <br>
+
+ <div>
+ <label for="profile-password">Change password?</label>
+ <input type="password" id="profile-password" name="password">
+ </div>
+
+ <div>
+ <label for="profile-password2">again:</label>
+ <input type="password" id="profile-password2" name="password2">
+ </div>
+ <br>
+
+ <div>
+ <label for="profile-submit"></label>
+ <button id="profile-submit">SAVE PROFILE</button>
+ </div>
+
+ <br>
+ <div>
+ <label></label>
+ <span class="errors">&nbsp;</span>
+ </div>
+
+ </form>
+</div>
+
+</div>
+
+<% include ../partials/footer %>