-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1.16 KB
/
index.html
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
<html>
<head>
<title>Light-Weight Lending Web App</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Welcome!</h1>
</div>
</div>
<div class="container">
<div class="well">
<form method="POST" action="javascript:onSubmit();">
<div class="form-group">
<label for="Lender">Select a lender</label>
<select id="lenderDropDown" name="Lender" class="form-control">
</select>
</div>
<input id="submitButton" type="submit" value="Submit" class="btn btn-default"/>
</form>
</div>
</div>
</body>
</html>