aboutsummaryrefslogtreecommitdiffstats
path: root/src/html/user_edit.html
blob: 95b02a2d818cbcc1789e5533c111e3552ea63e17 (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
<div class="row">
    <div class="col-lg-3 col-lg-offset-3">
        <h3>個人資料</h3>
        <label>暱稱</label>
        <input class="form-control" name="nickname" type="text">
        <label>信箱</label>
        <input class="form-control" name="email" type="text">
        <label>個人頭像網址</label>
        <input class="form-control" name="avatar" type="text"><br>
        <img class="img-thumbnail avatar"></img><br><br>
        <label>個人封面網址</label>
        <input class="form-control" name="cover" type="text"><br>
        <img class="img-thumbnail cover"></img><br><br>
        <label>關於我</label>
        <input class="form-control" name="aboutme" type="text"><br>
        <button class="btn btn-primary submit">確定</button>
        <button class="btn btn-default cancel">取消</button>

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