-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·117 lines (107 loc) · 5.51 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PV Diagnose</title>
<!-- Font Icon -->
<link rel="stylesheet" href="fonts/material-icon/css/material-design-iconic-font.min.css">
<!-- Main css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="main">
<div class="container">
<div class="signup-content">
<div class="signup-img">
<img src="images/test2.jpg" alt="">
</div>
<div class="signup-form">
<form method="GET" class="register-form" id="register-form" action="https://tlsu10ysac.execute-api.eu-central-1.amazonaws.com/prod/d-backend">
<h2>Check your PV productivity</h2>
<div class="form-group">
<label for="address">Address :</label>
<input type="text" name="address" id="address" required/>
</div>
<div class="form-group">
<label for="pvsize">PV size (sqm) :</label>
<input type="text" name="pvsize" id="pvsize" required/>
</div>
<div class="form-group">
<label for="kwp">kWp :</label>
<input type="text" name="kwp" id="kwp" required/>
</div>
<h2>Production over last year (kW/h)</h2>
<div class="form-row">
<div class="form-group">
<label for="name">January 2019 :</label>
<input type="text" name="0" id="name" required/>
</div>
<div class="form-group">
<label for="father_name">December 2018 :</label>
<input type="text" name="1" id="father_name"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="name">November 2018 :</label>
<input type="text" name="2" id="201811"/>
</div>
<div class="form-group">
<label for="father_name">October 2018 :</label>
<input type="text" name="3" id="201810"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="name">September 2018 :</label>
<input type="text" name="4" id="201809"/>
</div>
<div class="form-group">
<label for="father_name">August 2018 :</label>
<input type="text" name="5" id="201808"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="name">July 2018 :</label>
<input type="text" name="6" id="201807"/>
</div>
<div class="form-group">
<label for="father_name">June 2018 :</label>
<input type="text" name="7" id="201806"/>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="name">Mai 2018 :</label>
<input type="text" name="8" id="201805"/>
</div>
<div class="form-group">
<label for="father_name">April 2018 :</label>
<input type="text" name="9" id="201804"/>
</div>
<div class="form-group">
<label for="father_name">March 2018 :</label>
<input type="text" name="10" id="201803"/>
</div>
<div class="form-group">
<label for="father_name">February 2018 :</label>
<input type="text" name="11" id="201802"/>
</div>
</div>
<div class="form-submit">
<input type="submit" value="Reset All" class="submit" name="reset" id="reset" />
<input type="submit" value="Check" class="submit" name="submit" id="submit" />
</div>
</form>
</div>
</div>
</div>
</div>
<!-- JS -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="js/main.js"></script>
</body><!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>