You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
|
pageEncoding="ISO-8859-1"%>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
<link href="${pageContext.request.contextPath}/CSS/style.css" rel="stylesheet" type="text/css" >
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
function showHide() {
|
|
$('#loader').show();
|
|
}
|
|
|
|
</script>
|
|
|
|
<title>league</title>
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
<h1 align='center'>Choose League</h1>
|
|
|
|
<div style="width: 100%;text-align: center;">
|
|
|
|
<div style="display: inline-block;">
|
|
|
|
<form id='loginForm' name='loginForm' method='post' action='fantasyServlet' onsubmit="showHide()">
|
|
Year : <br/>
|
|
<input style="text-align: center;" type='text' name='year' value='2019'/> <br/>
|
|
League ID : <br/>
|
|
<input style="text-align: center;" type='text' name='league' value='209346' /> <br/>
|
|
<br/>
|
|
<input type='submit' value='Enter' /></form>
|
|
</div>
|
|
<br/>
|
|
<img style="width:250px;height:250px;" src="${pageContext.request.contextPath}/PICS/Fantasy-Basketball-badge.png" alt = "NBA Fantasy" />
|
|
|
|
</div>
|
|
|
|
<div id="loader" style= "width: 100%;text-align: center;display:none;">
|
|
<span>Importing Teams</span>
|
|
<span class="l-1"></span>
|
|
<span class="l-2"></span>
|
|
<span class="l-3"></span>
|
|
<span class="l-4"></span>
|
|
<span class="l-5"></span>
|
|
<span class="l-6"></span>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|