diff options
author | pzread <netfirewall@gmail.com> | 2013-08-12 01:09:08 +0800 |
---|---|---|
committer | pzread <netfirewall@gmail.com> | 2013-08-12 01:09:08 +0800 |
commit | 08e008103eaf3acc004beacb368e28cb76de1678 (patch) | |
tree | c46308e21d169f159d7c48aef6b304eacb724575 /src/html | |
parent | 722bb30bc952b61ce3bd94a5bc7a45db5f6b69ba (diff) | |
download | taiwan-online-judge-master.tar.gz taiwan-online-judge-master.tar.zst taiwan-online-judge-master.zip |
Diffstat (limited to 'src/html')
-rw-r--r-- | src/html/mail.html | 10 | ||||
-rw-r--r-- | src/html/user_edit.html | 26 | ||||
-rw-r--r-- | src/html/user_main.html | 6 |
3 files changed, 20 insertions, 22 deletions
diff --git a/src/html/mail.html b/src/html/mail.html index 6471d93..7c389a6 100644 --- a/src/html/mail.html +++ b/src/html/mail.html @@ -6,7 +6,7 @@ <h3>寫新郵件</h3> </div> <div class="modal-body row"> - <div class="span13"> + <div class="col-lg-13"> <div class="input-group"> <span class="input-group-addon">收件人</span> <input class="form-control to_username" type="text" placeholder="使用者名稱"> @@ -34,7 +34,7 @@ <h3 class="title"></h3> </div> <div class="modal-body row"> - <div class="span13"> + <div class="col-lg-13"> <div class="input-group"> <span class="input-group-addon username_label"></span> <input class="form-control username" type="text" disabled></input> @@ -59,9 +59,9 @@ <thead> <tr> <th class="check"><span class="check check_bold checkall" data-all="mailcheck"></span></th> - <th class="span2 username"></th> - <th class="span4">標題</th> - <th class="span2 time">時間</th> + <th class="col-lg-2 username"></th> + <th class="col-lg-7 title">標題</th> + <th class="col-lg-4 time">時間</th> </tr> </thead> <tbody></tbody> diff --git a/src/html/user_edit.html b/src/html/user_edit.html index 504837a..95b02a2 100644 --- a/src/html/user_edit.html +++ b/src/html/user_edit.html @@ -1,29 +1,29 @@ <div class="row"> - <div class="offset3 span3"> + <div class="col-lg-3 col-lg-offset-3"> <h3>個人資料</h3> <label>暱稱</label> - <input name="nickname" type="text"> + <input class="form-control" name="nickname" type="text"> <label>信箱</label> - <input name="email" type="text"> + <input class="form-control" name="email" type="text"> <label>個人頭像網址</label> - <input name="avatar" type="text"><br> - <img class="img-polaroid avatar"></img><br><br> + <input class="form-control" name="avatar" type="text"><br> + <img class="img-thumbnail avatar"></img><br><br> <label>個人封面網址</label> - <input name="cover" type="text"><br> - <img class="img-polaroid cover"></img><br><br> + <input class="form-control" name="cover" type="text"><br> + <img class="img-thumbnail cover"></img><br><br> <label>關於我</label> - <input name="aboutme" type="text"><br> + <input class="form-control" name="aboutme" type="text"><br> <button class="btn btn-primary submit">確定</button> - <button class="btn cancel">取消</button> + <button class="btn btn-default cancel">取消</button> <h3>更改密碼</h3> <label>舊密碼</label> - <input name="oldpassword" type="password"> + <input class="form-control" name="oldpassword" type="password"> <label>新密碼</label> - <input name="password" type="password"> + <input class="form-control" name="password" type="password"> <label>重複密碼</label> - <input name="repeat" type="password"><br> + <input class="form-control" name="repeat" type="password"><br> <button class="btn btn-primary submit">確定</button> - <button class="btn cancel">取消</button> + <button class="btn btn-default cancel">取消</button> </div> </div> diff --git a/src/html/user_main.html b/src/html/user_main.html index 7abec49..da735d0 100644 --- a/src/html/user_main.html +++ b/src/html/user_main.html @@ -1,9 +1,7 @@ <div class="cover"></div> <div class="row" style="height:768px; margin-top:640px; position:relative; z-index:0;"> - <div class="offset4 span2"> - <img class="img-polaroid avatar"></img> - </div> - <div class="span3 profile"> + <img class="col-lg-2 col-lg-offset-4 img-thumbnail avatar"></img> + <div class="col-lg-3 profile"> <h3 class="name"></h3> <h3>關於我</h3> <p class="aboutme"></p> |