-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Form values are HTML encoded on account page
- Loading branch information
1 parent
2f877a9
commit fc5b6d6
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,15 +10,15 @@ <h1>My Account</h1> | |
<form role="form" method="post" action="/account"> | ||
<div class="form-group"> | ||
<label for="username">Username</label> | ||
<input type="text" class="form-control" id="username" name="username" placeholder="john.smith" value="{{{ user.username }}}"> | ||
<input type="text" class="form-control" id="username" name="username" placeholder="john.smith" value="{{ user.username }}"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="name">Name</label> | ||
<input type="text" class="form-control" id="name" name="name" placeholder="John Smith" value="{{{ user.name }}}"> | ||
<input type="text" class="form-control" id="name" name="name" placeholder="John Smith" value="{{ user.name }}"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<input type="text" class="form-control" id="email" name="email" placeholder="[email protected]" value="{{{ user.email }}}"> | ||
<input type="text" class="form-control" id="email" name="email" placeholder="[email protected]" value="{{ user.email }}"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="password">Password</label> | ||
|
fc5b6d6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.