-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomepage.aspx
More file actions
20 lines (16 loc) · 954 Bytes
/
Homepage.aspx
File metadata and controls
20 lines (16 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Homepage.aspx.cs" Inherits="Homepage" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:Panel ID="Panel3" runat="server" Width="1200px" Height="700px">
<asp:Label ID="Label1" runat="server" Text="Welcome to Student Course Manager" style="font-size:150px;"></asp:Label>
<br />
<br />
<br />
<br />
<asp:Button ID="Button1" runat="server" Height="70px" PostBackUrl="~/Loginpage.aspx" style="font-size:40px;background-color:black;color:white;" Text="Get Started" Width="338px" />
<br />
<br />
</asp:Panel>
</asp:Content>