-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
39 lines (39 loc) · 1.98 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
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://code.highcharts.com/highcharts.src.js"></script>
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet"/>
<script type="text/javascript" src="http://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="CSS\master.css">
</head>
<body>
<div class="container-fluid">
<h1>Stacc Lånekalkulator</h1>
<form id="form">
<div class="form-group">
<label >Lånebeløp</label>
<input id="laanebelop" class="" type="number" step="100000" name="" value="3000000">
<label >Nominell rente</label>
<input id="nominellRente" class="" type="number" step="0.1" name="" value="3">
<label >Termingebyr</label>
<input id="termingebyr" class="" type="number" step="5" name="" value="30">
<label >Utløpsdato</label>
<input id="utlopsDato" class="datepicker" type="datetime" name="" value="2025-01-01">
<label >Saldodato</label>
<input id="saldoDato" class="datepicker " type="datetime" name="" value="2020-01-01">
<label >Dato første innbetaling</label>
<input id="datoForsteInnbetaling" class="datepicker" type="datetime" name="" value="2020-02-01">
<button type="button" id="submitButton">Beregn</button>
<div>
</form>
<div id="chartPayment" style="width:100%; height:800px;">
</div>
</div>
<script src="Javascript/script.js" type="text/javascript"></script>
</body>