You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
1.0 KiB

<div id="add-project-modal" class="modal">
<div class="modal-dialog">
<form method="post" action="{% url 'hc-add-project' %}" class="form-horizontal">
{% csrf_token %}
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<h1>Create New Project</h1>
<p>Name your project</p>
<input
id="add-project-name"
type="text"
name="name"
class="form-control input-lg"
autocomplete="off" />
<p>&nbsp;</p>
{% csrf_token %}
<button
type="submit"
name="set_project_name"
class="btn btn-lg btn-primary btn-block">
Create Project
</button>
</div>
</div>
</form>
</div>
</div>