25 lines
1.2 KiB
Plaintext
25 lines
1.2 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Complete.aspx.cs" Inherits="Education.MobileSurvey.Complete" %>
|
|
<!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" style="padding-top: 60px;">
|
|
<div class="complete-icon">✓</div>
|
|
<div class="complete-text">填寫完畢!</div>
|
|
<div class="complete-text" style="font-size: 20px;">感謝您!</div>
|
|
<div class="complete-sub">您的滿意度調查表已成功送出。</div>
|
|
<asp:LinkButton ID="btnBack" runat="server" CssClass="btn btn-primary mb-10" OnClick="btnBack_Click" Text="返回問卷列表" />
|
|
<asp:LinkButton ID="btnLogout" runat="server" CssClass="btn btn-secondary" OnClick="btnLogout_Click" Text="登出" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|