<body>
<form id="form1" runat="server" class="login-box">
<h1>信息管理系统</h1>
<div class="textbox">
<%--添加图标--%>
<i aria-hidden="true"></i>
<input type="text" placeholder="Enter Email" name="username" />
</div>
<div class="textbox">
<input type="password" placeholder="Enter Password" name="password"/>
</div>
<asp:Button ID="Button1" runat="server" Text="Login" class="btn "
onclick="Button1_Click1" />
<button onclick="document.getElementById('id01').style.display='block'" type="button" class="btn ">Register</button>
</form>
<div id="id01" class="modal">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
<form class="modal-content animate" action="">
<div class="container">
<h1 align="center">REGISTER</h1>
<label><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
<label><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<label><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="psw-repeat" required>
<input type="checkbox" checked="checked"> Remember me
<div class="clearfix">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn" >Sign Up</button>
</div>
</div>
</form>
</div>
</body>