forked from hard1code/hand_shaken-webfrom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.aspx
15 lines (14 loc) · 1.05 KB
/
Default.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="hand_shaken_webform._Default" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<div class="row">
<div style="margin-top: 25px;margin-left:400px">
<div style="width:400px">
<img class="center-block" src="img/icon2.png"/>
<h1 class="text-center">手搖飲管理系統</h1>
<asp:TextBox runat="server" ID="account" class="form-control center-block" placeholder="請輸入帳號" style="margin-top: 10px;"></asp:TextBox>
<asp:TextBox runat="server" ID="password" type="password" class="form-control center-block" placeholder="請輸入密碼" style="margin-top: 10px;"></asp:TextBox>
<asp:Button runat="server" class="btn btn-lg btn-dark btn-success btn-block center-block" style="margin-top: 10px;" Text="登入" OnCommand="Check_Login" />
</div>
</div>
</div>
</asp:Content>