aboutsummaryrefslogtreecommitdiffstats
path: root/src/html/user_edit.html
blob: da8706deef760a6e42247f2c5e3c56d776d2077a (plain) (blame)
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
<link href="/toj/css/user_edit.css" rel="stylesheet">

<div class="row">
    <div class="offset3 span3">
        <h3>個人資料</h3>
        <label>暱稱</label>
        <input name="nickname" type="text">
        <label>信箱</label>
        <input name="email" type="text">
        <label>個人頭像網址</label>
        <input name="avatar" type="text"><br>
        <img class="img-polaroid avatar"></img><br><br>
        <label>個人封面網址</label>
        <input name="cover" type="text"><br>
        <img class="img-polaroid cover"></img><br><br>
        <label>關於我</label>
        <input name="aboutme" type="text"><br>
        <button class="btn btn-primary submit">確定</button>
        <button class="btn cancel">取消</button>

        <h3>更改密碼</h3>
        <label>舊密碼</label>
        <input name="oldpassword" type="password">
        <label>新密碼</label>
        <input name="password" type="password">
        <label>重複密碼</label>
        <input name="repeat" type="password"><br>
        <button class="btn btn-primary submit">確定</button>
        <button class="btn cancel">取消</button>
    </div>
</div>