123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <style>
- #add-form{
- width: 50%;
- margin:0 auto;
- }
- h3{
- text-align: center;
- }
- .line{
- border-bottom: 2px solid #ccc;
- margin:30px 0 10px;
- }
- .center{
- text-align: center;
- font-size: 14px;
- }
- .invmsg{
- margin:70px 0 80px;
- }
- .invmsg p{
- line-height: 20px;
- }
- .tologin{
- margin-top: 20px;
- text-align: center;
- }
- .tologin button{
- height: 50px;
- line-height: 40px;
- border-radius: 25px;
- width: 30%;
- margin:0 auto;
- background-color: #00b3ea;
- color:#fff;
- font-size: 16px;
- font-weight: 700;
- }
- .redfont{
- color:red;
- font-weight: 700;
- }
- .weightfont{
- font-size: 18px;
- font-weight: 700;
- }
- .form-horizontal .form-group input{width: 80%}
- </style>
- <h3>{$platname}账号申请表</h3>
- <div class="line"></div>
- <div class="invmsg">
- <p class="center">恭喜您,申请成功,你获得的登录账号:<span class="weightfont">{$username}</span></p>
- <p class="center redfont">此账号处于未激活状态,暂时无法登录</p>
- <p class="center">请联系邀请者 {$invite_msg} 激活你的账号并获得密码</p>
- </div>
- <div class="form-group layer-footer">
- <p class="center">激活成功后你可以使用账号密码进行登录</p>
- <label class="control-label col-xs-12 col-sm-2"></label>
- <div class="col-xs-12 col-sm-8 tologin">
- <a href="/admin/index/login">
- <button class="btn ">{:__('登录平台')}</button>
- </a>
- </div>
- </div>
|