14 lines
587 B
HTML
14 lines
587 B
HTML
<meta charset="UTF-8">
|
|
<html>
|
|
<body>
|
|
<form method="post" enctype="multipart/form-data">
|
|
<label for="helenFile">Helen File:</label>
|
|
<input type="file" id="helenFile" name="helen.pdf" required />
|
|
<label for="dayKwh">Day Siirto Kwh Periods:</label>
|
|
<input type="text" id="dayKwh" name="dayKwh" required />
|
|
<label for="nightKwh">Night Siirto Kwh Periods:</label>
|
|
<input type="text" id="nightKwh" name="nightKwh" required/>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html> |