-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.aspx
More file actions
40 lines (38 loc) · 1.63 KB
/
default.aspx
File metadata and controls
40 lines (38 loc) · 1.63 KB
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="default.aspx.cs" Inherits="LastCallServer._default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function Login() {
window.open("Login.html", "_blank", "toolbar=yes,scrollbars=no,resizable=yes,top=500,left=500,width=800,height=400");
}
function Register() {
window.open("Registration.aspx", "_blank", "toolbar=yes,scrollbars=no,resizable=yes,top=500,left=500,width=800,height=600");
}
function NoAction() {
alert("No action defined");
}
function Offers() {
window.open("MealOffers.html", "_blank", "toolbar=yes,scrollbars=no,resizable=yes,top=500,left=500,width=800,height=600");
}
</script>
</head>
<body>
<!--<iframe src="https://giphy.com/embed/7p3e2WCM0VEnm" width="480" height="480" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>-->
<form id="form1" action="">
<div>
You have arrived at the LastCall development website.
<br /><br />
<button onclick="Login()" style="width: 150px">Sign In</button>
<br /><br />
<button onclick="Register()" style="width: 150px">Sign Up</button>
<br /><br />
<button onclick="NoAction()" style="width: 150px">Learn More</button>
<br /><br />
<button onclick="Offers()" style="width: 150px">Meal Offers</button>
<br /><br />
</div>
</form>
</body>
</html>