Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct spelling and placeholders #58

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions templates/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,25 +57,24 @@
<div class="col-lg-12">
<form id="xxx" method="post">
<div class="form-group">
<h1 class="text-center" style="margin:5%;color: #0A0908;">Welcome to your profile</h1>
<h1 class="text-center" style="margin:5%;color: #0A0908;">Welcome to Your Profile</h1>
<hr style="width: 100%; color:#0A0908; height: 1px; background-color:#0A0908;" />
<label style="color:#0A0908;">
Level:
</label>
<p>{{ level }}</p>
</div>
<div class="form-group">
<label for="bio" style="color:#0A0908;">Bio:</label>
<input type="text" name="bio" class="form-control" value="{{ bio }}" placeholder="Write your bio here (max 80 letters)" style="height:100px;font-size:30pt" />
<input type="text" name="bio" class="form-control" placeholder="Write your bio here (max 80 letters)" style="height:100px;font-size:30pt" />
</div>
<div class="form-group">
<label for="interests" style="color:#0A0908;">Interests:</label>
<input type="text" name="interests" class="form-control" value="{{ interests }}" style="height:100px;font-size:30pt" placeholder="Enter upto 3 interests separated by commas"/>
<input type="text" name="interests" class="form-control" style="height:100px;font-size:30pt" placeholder="Enter up to 3 interests separated by commas"/>
</div>
<input type="hidden" id="idd" name="psid" value="{{ id }}" />
<div class="text-center">
<h3>Click Save below to save your profile</h3>
<input type="submit" value="Submit" class="btn btn-default btn-primary" style="height:90px;font-size:40pt;">
<input type="submit" value="Save" class="btn btn-default btn-primary" style="height:90px;font-size:40pt;">
</div>
</form>
</div>
Expand Down