Version initiale fonctionnelle

This commit is contained in:
François Pelletier 2022-06-12 00:32:21 -04:00
parent b9877d1550
commit 4293be9208
9 changed files with 103 additions and 89 deletions

19
templates/linkedin.html Normal file
View file

@ -0,0 +1,19 @@
<html>
<head>
<title>Emoji Count - Upload</title>
</head>
<body>
<form action="http://localhost:5000/linkedin_upload" method="POST"
enctype="multipart/form-data">
<input type="radio" id="linkedin_shares" name="type_linkedin"
value="Shares">
<label for="linkedin_shares">Shares</label><br>
<input type="radio" id="linkedin_comments" name="type_linkedin"
value="Comments">
<label for="linkedin_shares">Comments</label>
<br>
<input type="file" name="linkedin_csv"/>
<input type="submit"/>
</form>
</body>
</html>