39 lines
1.6 KiB
Plaintext
39 lines
1.6 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="Education.MobileSurvey.Login" %>
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>滿意度調查 - 行動版登入</title>
|
|
<link rel="stylesheet" type="text/css" href="MobileSurvey.css" />
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<div class="mobile-container">
|
|
<div class="mobile-content">
|
|
<div class="login-logo">
|
|
<asp:Image ID="imgLogo" runat="server" ImageUrl="~/picture/Default/logo_ty.png" />
|
|
</div>
|
|
<div class="login-title">
|
|
<asp:Label ID="lbSystemName" runat="server"></asp:Label>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="txtUserId">使用者代號</label>
|
|
<asp:TextBox ID="txtUserId" runat="server" MaxLength="10" Font-Bold="true"></asp:TextBox>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="txtPassword">登入密碼</label>
|
|
<asp:TextBox ID="txtPassword" runat="server" TextMode="Password" MaxLength="10" Font-Bold="true"></asp:TextBox>
|
|
</div>
|
|
<div class="mt-20">
|
|
<asp:LinkButton ID="btnLogin" runat="server" CssClass="btn btn-primary" OnClick="btnLogin_Click" Text="登入" />
|
|
</div>
|
|
<div class="mt-10 text-center">
|
|
<asp:Label ID="lbErrMsg" runat="server" CssClass="error-message" EnableViewState="false"></asp:Label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|