Skip to content

Commit eeda866

Browse files
Templated Added
1 parent 4a47ade commit eeda866

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

junction/templates/profiles/userprofile.html

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,33 @@
3131
<div class="form-container space-2-bottom {% if form.errors %} has-error {% endif %}">
3232
<h2 class="text-center">Edit Profile</h2>
3333
<div class="pad-2 push-half-top push-2-bottom">
34-
<p> {% block trans %} Add Your City and Contact Number:{% endblock %} </p>
34+
<p> {% block trans %} Add Your City and Contact Number: {% endblock %} </p>
3535
<form class="form-horizontal login-form" method="POST">
3636
{% csrf_token %}
37-
</form>
38-
37+
<div class="form-group">
38+
<label for="city" class="col-lg-4 control-label"> City :</label>
39+
<div class="col-lg-8">
40+
<input autofocus="autofocus" name="city" placeholder="Enter Your City" type="text">
41+
</div>
42+
</div>
43+
<div class="form-group">
44+
<label for="contact" class="col-lg-4 control-label"> Contact :</label>
45+
<div class="col-lg-8">
46+
<input autofocus="autofocus" name="contact" placeholder="Enter Your Contact No:" type="text">
47+
</div>
48+
</div>
49+
<div class="form-group">
50+
<div class="col-lg-8 col-lg-offset-4">
51+
<button class="btn btn-primary" type="submit">
52+
Submit
53+
</button>
54+
</div>
3955

56+
</form>
57+
</div>
4058
</div>
4159
</div>
4260
</div>
43-
</div>
4461

4562

4663
{% endblock %}

0 commit comments

Comments
 (0)