upload.unturf.com/templates/import_user_record.html.j2
Russell Ballestrini d7416d2bae init
new file:   .gitignore
	new file:   app.py
	new file:   requirements.txt
	new file:   templates/base.html.j2
	new file:   templates/edit_media.html.j2
	new file:   templates/home.html.j2
	new file:   templates/import_user_record.html.j2
	new file:   templates/list_media.html.j2
	new file:   templates/login.html.j2
	new file:   templates/profile.html.j2
	new file:   templates/upload_media.html.j2
	new file:   templates/user_media.html.j2
	new file:   templates/verify.html.j2
	new file:   templates/view_media.html.j2
	new file:   templates/view_media_details.html.j2
2024-12-29 15:21:59 -05:00

12 lines
408 B
Django/Jinja

{% extends 'base.html.j2' %}
{% block title %}Import User Record{% endblock %}
{% block content %}
<h1>Import User Record</h1>
<form method="POST" enctype="multipart/form-data">
<label for="user_record_file">Select User Record JSON File:</label>
<input type="file" name="user_record_file" accept="application/json" required><br><br>
<button type="submit">Import</button>
</form>
{% endblock %}