emoji-flask-app/templates/linkedin.html

25 lines
590 B
HTML
Raw Normal View History

2022-06-12 04:32:21 +00:00
<html>
<head>
<title>Emoji Count - Upload</title>
</head>
<body>
2022-06-20 20:10:22 +00:00
<a href="/manuel">Manuel</a>
<br><br>
2022-06-20 05:03:44 +00:00
<form action="/linkedin_upload" method="POST"
2022-06-12 04:32:21 +00:00
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>
2022-06-20 20:10:22 +00:00
2022-06-12 04:32:21 +00:00
</body>
</html>