65 lines
2.4 KiB
Plaintext
65 lines
2.4 KiB
Plaintext
|
<!doctype html>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<meta charset="utf-8">
|
|||
|
<title>跳转页面</title>
|
|||
|
<style>
|
|||
|
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{ margin:0; padding:0;}
|
|||
|
body,table,input,textarea,select,button { font-family: "微软雅黑","宋体"; font-size:12px;line-height:1.5; background:#eaebec;}
|
|||
|
div,img,tr,td,table{ border:0;}
|
|||
|
table,tr,td{border:0;cellspacing:0; cellpadding:0;}
|
|||
|
ol,ul,li{ list-style-type:none}
|
|||
|
a:link,a:visited{color:#7f7f7f;text-decoration:none;}
|
|||
|
a:hover,a:active{color:#000;}
|
|||
|
|
|||
|
/*跳转页面*/
|
|||
|
.goto-cont{ width:1000px; margin: 10px auto; padding:100px 0 500px; line-height:1.9; background:#fff;color:#636363;}
|
|||
|
.goto-cont h2{ text-align:center; font-weight:normal; font-size:20px; margin-bottom:15px; color:#636363; }
|
|||
|
.goto-table{ width:382px; margin:0 auto; }
|
|||
|
.goto-table tr td{ line-height:40px; background-color:#fff; }
|
|||
|
.goto-tableft{ width:80px; text-align:right; font-size:16px;}
|
|||
|
.goto-input{ border: 1px solid #c2c2c2; padding: 2px 5px;vertical-align: middle;line-height: 35px;height: 35px; background-color:#fff; width:300px; font-size:16px;}
|
|||
|
.goto-submit{ width:312px; height:40px; margin:0 auto;line-height:40px; background-color:#269ac9; color:#fff; text-align:center; border:none; margin-top:20px; font-size:16px; }
|
|||
|
.goto-submit:hover{background-color: #1f82aa;}
|
|||
|
.goto-red{ color:#D71215;}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
</style>
|
|||
|
</head>
|
|||
|
|
|||
|
<body>
|
|||
|
<div class="" style="height:54px; background:#269ac9;"></div>
|
|||
|
<%= form_tag('/sso') do -%>
|
|||
|
<div class="goto-cont">
|
|||
|
<h2>请修改您的资料,以确保Trustie为您提供更便捷的服务</h2>
|
|||
|
<table cellSpacing="0" cellPadding="0" class="goto-table">
|
|||
|
<tr>
|
|||
|
<td class="goto-tableft"> 用户名:</td>
|
|||
|
<td >
|
|||
|
<input type="text" class="goto-input" value="<%= @options["name"] %>" name="login"/>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td></td>
|
|||
|
<td class="goto-red">已存在相同用户名,请选择更合适的用户名</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td class="goto-tableft" > 邮箱:</td>
|
|||
|
<td >
|
|||
|
<input type="email" class="goto-input" value="<%= @options["email"] %>" disabled="disabled" />
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td></td>
|
|||
|
<td ><input type="submit" value="确定" class="goto-submit"/></td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
</div>
|
|||
|
|
|||
|
<%= hidden_field_tag 'auth', @auth %>
|
|||
|
<% end -%>
|
|||
|
|
|||
|
</body>
|
|||
|
</html>
|