summaryrefslogtreecommitdiff
path: root/views/pages/profile_form.ejs
blob: 01b0fae7c9dbe3bcb594f806ae1e5f704599b7e4 (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
<% 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 %>