-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.aspx
94 lines (53 loc) · 2.28 KB
/
home.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="home.aspx.cs" Inherits="uni_admission.home1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<link href="css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="main.css"/>
<script src="js/bootstrap.min.js"></script>
<script src="main.js"></script>
<style>
</style>
</head>
<body class="header">
<form id="form1" runat="server">
<p style="color:darkred; font-size:small; padding-left:800px; font-size:x-large">
<asp:Button ID="logout" runat="server" Text="Log Out" Font-Bold="true" BackColor="darkblue" Font-Size="Medium" BorderStyle="Dashed" ForeColor="White" BorderColor="black" Height="32px" Width="76px" OnClick="logout_Click" style="margin-right: 0px" />
</p>
<nav class="navbar navbar-expand-md">
<a class="navbar-brand" href="#">Logo</a>
<button class="navbar-toggler navbar-dark" type="button" data-toggle="collapse" data-target="#main-navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="main-navigation">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="/home.aspx">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/universities.aspx" >Universities</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</nav>
<header class="page-header header container-fluid">
<div class="description">
<div class="overlay">
<h1>Welcome to the Home Page!</h1>
</div>
</div>
</header>
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
<asp:Label ID="Label1" runat="server" Text="E-mail"></asp:Label>
<br />
</form>
</body>
</html>