Skip to content

Commit 9d142b9

Browse files
committed
gitignore file added
1 parent 308e51b commit 9d142b9

File tree

7 files changed

+52
-37
lines changed

7 files changed

+52
-37
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/venv
2+
/data.db

Readme.md

-32
This file was deleted.

data.db

-12 KB
Binary file not shown.

static/uploads/pragmatec.xlsx

-7.95 KB
Binary file not shown.

templates/index.html

+50-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,50 @@
1-
<form action="/" method="POST" enctype="multipart/form-data">
2-
<input type="file" name="file" id="">
3-
<button type="submit" class="btn btn-primary mt-3">Submit</button>
4-
</form>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Required meta tags -->
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
8+
<!-- Bootstrap CSS -->
9+
<!-- https://cdnjs.com/libraries/twitter-bootstrap/5.0.0-beta1 -->
10+
<link
11+
rel="stylesheet"
12+
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.0-beta1/css/bootstrap.min.css"
13+
/>
14+
15+
<!-- Icons: https://getbootstrap.com/docs/5.0/extend/icons/ -->
16+
<!-- https://cdnjs.com/libraries/font-awesome -->
17+
<link
18+
rel="stylesheet"
19+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
20+
/>
21+
22+
<title>Hello, world!</title>
23+
</head>
24+
<body class="d-flex vw-100 vh-100 align-items-center justify-content-center">
25+
<form action="/" method="POST" enctype="multipart/form-data">
26+
<div class="form-group m-2">
27+
<label for="exampleInputEmail1" class="my-2">Upload your excel file here in order to convert it to database schema</label>
28+
<input type="file" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" name="file">
29+
</div>
30+
<button type="submit" class="btn btn-primary m-2">Submit</button>
31+
</form>
32+
33+
<!-- Optional JavaScript; choose one of the two! -->
34+
35+
<!-- Option 1: Bootstrap Bundle with Popper -->
36+
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.0-beta1/js/bootstrap.bundle.min.js"></script>
37+
38+
<!-- Option 2: Separate Popper and Bootstrap JS -->
39+
40+
<!-- https://cdnjs.com/libraries/popper.js/2.5.4 -->
41+
<!-- <script
42+
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.5.4/umd/popper.min.js"
43+
></script>
44+
<script
45+
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.0-beta1/js/bootstrap.min.js"
46+
></script> -->
47+
48+
<!-- More: https://getbootstrap.com/docs/5.0/getting-started/introduction/ -->
49+
</body>
50+
</html>

templates/salam.html

-1
This file was deleted.

templates/sample.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)