Files
journal_com/contribu_login.html
wangjinlei 6e7ee3dd44 begin
2023-05-18 09:42:12 +08:00

131 lines
4.9 KiB
HTML

<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<link rel="shortcut icon" href="img/tmr3.png" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="style/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style/style.css"/>
<style>
.tbu_login {
display: block;
}
.tbu_regist {
display: none;
}
.disable {
pointer-events: none;
}
</style>
</head>
<body>
<div id="col-content">
<div id="top_bar">
<!--头部-->
</div>
<div class="article">
<div class="art_side">
<!--侧边栏-->
</div>
<div class="art_main art_main_con back_fff">
<div class="contbu_ contbu_form">
<div class="tbu_login">
<h4 class="rgb_color"
style="font-size: 18px; font-weight: bold; line-height: 30px; margin-bottom: 10px;">
Sign in</h4>
<div style="margin-left: 30px">
<label>Username </label><br>
<input type="text" id="username_" value="" placeholder="username"/>
<span class="spa_ spa1"></span>
</div>
<div style="margin-left: 30px">
<label>Password </label><br>
<input type="password" id="password_" value="" placeholder="password"/>
<span class="spa_ spa2"></span>
</div>
<div style="margin-left: 30px">
<label></label>
<input type="submit" value="Log in" class="sub_guest" onclick="contribu_login()"/>
</div>
<div class="tb_logre">Register now</div>
</div>
<div class="tbu_regist">
<h4 class="rgb_color"
style="font-size: 18px; font-weight: bold; line-height: 30px; margin-bottom: 10px;padding-left: 145px;">
User Register</h4>
<div style="margin-left: 30px">
<label>Username </label><b>*</b><br>
<input type="text" id="username" value="" placeholder="username"/>
<span class="spa spa3"></span>
</div>
<div style="margin-left: 30px">
<label>Password </label><b>*</b><br>
<input type="password" id="password" value="" placeholder="password"/>
<span class="spa spa4"></span>
</div>
<div style="margin-left: 30px">
<label>Realname </label><br>
<input type="text" id="realname" value="" placeholder="realname"/>
<span class="spa spa5"></span>
</div>
<div style="margin-left: 30px">
<label>Phone </label><br>
<input type="text" id="phone" value="" placeholder="phone"/>
<span class="spa spa6"></span>
</div>
<div style="margin-left: 30px">
<label>Email </label><b>*</b><br>
<input type="text" id="email" value="" placeholder="email"/>
<span class="spa spa7"></span>
</div>
<div style="margin-left: 30px">
<label></label>
<input type="submit" value="Log in" class="sub_guest" onclick="contribu_regist()"/>
</div>
<div class="tb_grelo">Go login</div>
</div>
</div>
</div>
<br clear="both">
</div>
<div class="footer">
<!--底部菜单栏-->
</div>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-cookie.js"></script>
<script src="js/return-top.js"></script>
<script src="js/js.js"></script>
<script src="js/side.js"></script>
<script src="js/contribu.js"></script>
<script>
$(document).ready(function () {
side_list();
$('.contbu_form input.sub_guest').css('background-color',localStorage.Journals_color);
$(".tb_logre").click(function () {
$('.tbu_login').css('display', 'none');
$('.tbu_regist').css('display', 'block')
}
)
$(".tb_grelo").click(function () {
$('.tbu_login').css('display', 'block');
$('.tbu_regist').css('display', 'none')
}
)
});
</script>
</html>