Skip to content

Commit

Permalink
Form values are HTML encoded on account page
Browse files Browse the repository at this point in the history
  • Loading branch information
sibartlett committed Dec 6, 2014
1 parent 2f877a9 commit fc5b6d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/views/account.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

1 comment on commit fc5b6d6

@hhaidar
Copy link

@hhaidar hhaidar commented on fc5b6d6 Dec 8, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:nod:

Please sign in to comment.