Skip to content

Commit

Permalink
Add Foundation Form with input fields for the project parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mahendrark committed Feb 15, 2021
1 parent c1efff0 commit bff27b6
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/GUI_draft/templates/create_project.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,29 @@ <h4>
<input type="file" id="projParamsFile" class="show-for-sr">
</h4>
</div>

<div class="cell small-6">
<h4>
<a href="https://open-plan--82.org.readthedocs.build/en/82/tool_interface.html#map-with-project-location" target="_blank">Project Location Map VC</a>
</h4>
</div>

<div class="cell">

<form>
{% for (parameter, value) in project_parameters.items() %}
<label>{{ parameter }}
<input type="text" placeholder={{ value }}>
</label>
{% endfor %}
</form>

</div>

</div>

<div class="grid-x">
<h4 title="Click here will go to the next step"><a href="{{ url_for('project_created') }}" class="success button">Create Project</a></h4><
<h4 title="Click here will go to the next step"><a href="{{ url_for('project_created') }}" class="success button">Create Project</a></h4>
</div>

{% endblock content %}

0 comments on commit bff27b6

Please sign in to comment.