123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <!DOCTYPE html>
- <html style="height: 100%;">
- <head>
- <meta charset="utf-8">
- <title></title>
- <script src="../../js/jquery-1.9.1.min.js"></script>
- <script src="../../js/jquery.i18n.properties.js"></script>
- <script src="../../assets/js/language.js"></script>
- <script src="../../js/jquery.validate.min.js"></script>
- <script src="../../assets/js/language_validator.js"></script>
- <link rel="stylesheet" type="text/css" href="../../css/bootstrap.min.css" rel="stylesheet">
- <link rel="stylesheet" type="text/css" href="../../assets/plugin/zeroModal/css/normalize.css" />
- <link rel="stylesheet" type="text/css" href="../../assets/plugin/zeroModal/css/zeroModal.css">
- <style>
- .top{
- padding:10px 50px 0px 50px;
- border-bottom: 1px solid #e8e8e8;
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-between;
- align-items: center;
- height: 80px;
- box-sizing: border-box;
- font-family: Avenir-Black;
- }
-
- .top-item{
- padding:0px 20px;
- line-height: 70px;
- font-weight: bold;
- cursor: pointer;
- }
- .top-item-active{
- border-bottom: 3px solid #f83d5a;
- color: #f83d5a;
- }
- .us-name-item{
- width:160px;
- }
- .form-box{
- width:300px;
- margin:50px auto;
- }
- .form-group-custom .input-tool-icon{
- width:30px;
- height:30px;
- text-align: center;
- line-height: 30px;
- position: absolute;
- top: 35px;
- right: 5px;
- color:#999;
- font-size: 14px;
- z-index: 100;
- /* padding: 10px; */
- cursor:pointer;
- /* background-color: #1B6D85; */
- display: none;
- }
- .form-group-custom{
- position: relative;
- margin-bottom: 30px;
- }
- .form-group-custom .form-control {
- height: 48px;
- line-height: 48px;
- padding-right: 42px;
- /* margin-bottom: 30px; */
- }
- .login-tit{
- font-size: 28px;
- font-weight: bold;
- margin:30px 0px 50px;
-
- }
- .form-group-custom label[for]{
- font-weight: bold;
- }
- .form-group-custom label[for][class='error']{
- font-weight: normal;
- font-size:14px;
- color:#F27474;
- }
- </style>
- </head>
- <body>
- <div id="head" ></div>
- <script>
- $(function() {
- $("#head").load("../head.html",function(){
- $("#common-navbar-head .active").removeClass("active")
- $("#common-navbar-head .head_li_user").addClass("active")
- });
- })
- </script>
- <input type="hidden" class="signin_success i18n-input" i18n="changepwd_Change success" />
-
- <main class="jpmain" style="margin-top:85px;margin-bottom: 0px;">
- <div class="container-fluid" style="padding:0;">
-
-
- <div class="form-box">
- <h4 style="margin-bottom: 50px;font-weight: bold;" class="i18n-text" i18n="changepwd_Change password" >Change password</h4>
- <form class="signin-form">
- <div class="form-group form-group-custom">
- <label for="email" class="i18n-text" i18n="changepwd_Old password" >Old password</label>
- <input type="password" class="form-control i18n-placeholder" i18n="changepwd_Enter your old password"id="oldpwd" name="oldpwd" placeholder="Enter your old password" required>
- <span class="input-tool-icon glyphicon glyphicon-eye-open"></span>
- </div>
-
- <div class="form-group form-group-custom">
- <label for="pwd" class="i18n-text" i18n="changepwd_Password" >Password</label>
- <input type="password" class="form-control i18n-placeholder" i18n="changepwd_Enter your new password" id="pwd" name="pwd" placeholder="Enter your new password" required>
- <span class="input-tool-icon glyphicon glyphicon-eye-open"></span>
- </div>
-
- <div class="form-group form-group-custom">
- <label for="pwd" class="i18n-text" i18n="changepwd_Confirm new password" >Confirm new password</label>
- <input type="password" class="form-control i18n-placeholder" i18n="changepwd_Enter your new password again"id="pwdagain" name="pwdagain" placeholder="Enter your new password again" required equalTo="#pwd">
- <span class="input-tool-icon glyphicon glyphicon-eye-open"></span>
- </div>
-
- <button class="btn btn-lg btn-danger btn-block create-btn i18n-text" i18n="changepwd_Change" type="submit">Change</button>
- </form>
- </div>
- </div>
- </div>
-
- <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
- <script src="https://fastly.jsdelivr.net/npm/@bootcss/v3.bootcss.com@1.0.35/assets/js/ie10-viewport-bug-workaround.js"></script>
- <script src="../../assets/js/changepwd.js"></script>
- <script src="../../assets/plugin/zeroModal/js/zeroModal.js"></script>
- </body>
- </html>
|