Merge pull request #1992 from AndreasK79/forgotten_password_tweak

[Forgotten password] Tweaked layout to be the same as login
这个提交包含在:
Peter Goodhall 2023-02-09 22:59:15 +00:00 提交者 GitHub
当前提交 623840cd70
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -1,8 +1,35 @@
<div id="container" class="container mx-auto pt-5" style="max-width:400px"> <style>
<div class="row"> html,
<div class="col-12"> body {
<div class="panel panel-default"> height: 100%;
<div class="panel-body"> }
body {
display: flex;
align-items: center;
padding-top: 40px;
padding-bottom: 40px;
}
.form-forgot {
width: 100%;
max-width: 430px;
padding: 15px;
margin: auto;
}
input[type="email"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
</style>
<main class="form-forgot">
<img src="<?php echo base_url()?>/CloudLog_logo.png" class="mx-auto d-block" alt=""
style="width:100px;height:100px;">
<div class="my-2 bg-body rounded-0 shadow-sm card mb-2 shadow-sm">
<div class="card-body">
<div class="text-center"> <div class="text-center">
<h3><i class="fa fa-lock fa-4x"></i></h3> <h3><i class="fa fa-lock fa-4x"></i></h3>
<h2 class="text-center">Forgot Password?</h2> <h2 class="text-center">Forgot Password?</h2>
@ -23,9 +50,8 @@
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<input name="recover-submit" class="btn btn-lg btn-primary btn-block" value="Reset Password" type="submit"> <input name="recover-submit" class="w-100 btn btn-primary btn-block" value="Reset Password" type="submit">
</div> </div>
<input type="hidden" class="hide" name="token" id="token" value=""> <input type="hidden" class="hide" name="token" id="token" value="">
</form> </form>
@ -33,6 +59,4 @@
</div> </div>
</div> </div>
</div> </div>
</div> </main>
</div>
</div>