mirror of https://gitee.com/karson/fastadmin.git
优化退出表单元素
parent
dd1560d9bf
commit
308e86c345
|
|
@ -29,18 +29,19 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="logout-main text-center">
|
<div class="logout-main text-center">
|
||||||
<div class="image">
|
<div class="image">
|
||||||
<img src="__CDN__/assets/img/info.svg" alt="" width="100" />
|
<img src="__CDN__/assets/img/info.svg" alt="" width="100" />
|
||||||
</div>
|
</div>
|
||||||
<h3 class="my-4" style="font-size:16px;">{:__('Are you sure you want to sign out?')}</h3 class="my-4" style="font-size:16px;">
|
<h3 class="my-4" style="font-size:16px;">{:__('Are you sure you want to sign out?')}</h3>
|
||||||
<form name="form" id="login-form" class="form-vertical" method="POST" action="#">
|
<form name="form" id="logout-form" class="form-vertical" method="POST" action="#">
|
||||||
{:token()}
|
{:token()}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<button type="submit" class="btn btn-primary btn-lg btn-block">{:__('Confirm sign out')}</button>
|
<button type="submit" class="btn btn-primary btn-lg btn-block">{:__('Confirm sign out')}</button>
|
||||||
</div>
|
<button type="button" class="btn btn-default btn-lg btn-block mt-2" onclick="history.back()">{:__('Cancel')}</button>
|
||||||
</form>
|
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{include file="common/script" /}
|
{include file="common/script" /}
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,12 @@
|
||||||
<div class="image">
|
<div class="image">
|
||||||
<img src="__CDN__/assets/img/info.svg" alt="" width="100" />
|
<img src="__CDN__/assets/img/info.svg" alt="" width="100" />
|
||||||
</div>
|
</div>
|
||||||
<h3 class="my-4" style="font-size:16px;">{:__('Are you sure you want to sign out?')}</h3 class="my-4" style="font-size:16px;">
|
<h3 class="my-4" style="font-size:16px;">{:__('Are you sure you want to sign out?')}</h3>
|
||||||
<form name="form" id="login-form" class="form-vertical" method="POST" action="#">
|
<form name="form" id="logout-form" class="form-vertical" method="POST" action="#">
|
||||||
{:token()}
|
{:token()}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<button type="submit" class="btn btn-primary btn-lg btn-block">{:__('Confirm sign out')}</button>
|
<button type="submit" class="btn btn-primary btn-lg btn-block">{:__('Confirm sign out')}</button>
|
||||||
|
<button type="button" class="btn btn-default btn-lg btn-block mt-2" onclick="history.back()">{:__('Cancel')}</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue