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.
32 lines
1.4 KiB
32 lines
1.4 KiB
{% extends "base.html" %}
|
|
|
|
{% block title %}Index Page{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Hellooo</h1>
|
|
<form method="POST" action="{{ url_for('index') }}">
|
|
<input type="text" name="username" placeholder="Username"><br>
|
|
<input type="text" name="password" placeholder="Password"><br>
|
|
<input type="submit" value="login">
|
|
</form>
|
|
|
|
<h1>File Upload</h1>
|
|
<form method="POST" action="{{ url_for('file_upload') }}" enctype="multipart/form-data">
|
|
<input type="file" name="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel, text/plain" ><br>
|
|
<input type="submit" value="upload File">
|
|
</form>
|
|
|
|
<h1>Convert To CSV</h1>
|
|
<form method="POST" action="{{ url_for('convert_csv') }}" enctype="multipart/form-data">
|
|
<input type="file" name="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" ><br>
|
|
<input type="submit" value="upload File">
|
|
</form>
|
|
|
|
<h1>Convert To CSV Two</h1>
|
|
<form method="POST" action="{{ url_for('convert_csv_two') }}" enctype="multipart/form-data">
|
|
<input type="file" name="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" ><br>
|
|
<input type="submit" value="upload File">
|
|
</form>
|
|
|
|
{% endblock %}
|