<% var title = inputs.profile.firstName+ "'s Profile"; var description = 'Challenge Sign Up.'; %> <% include blocks/pre.content.html %>
<% if (inputs.error) { %> <% } %> <% if (inputs.errors) {%>
<% for (error of inputs.errors) { %>

<%= error %>

<% } %>
<% } %> <% if (inputs.feedbacks) {%>
<% for (feedback of inputs.feedbacks) { %>

<%= feedback %>

<% } %>
<% } %>
<% for ( field of inputs.fields ) { var value = inputs.profile[field.name]; var readonly=inputs.readonly||field.readonly; if(readonly&&field.showInPublicProfile==false)continue; %>
<% if(field.customControl){%> <%-field.customControl(value,readonly) %> <% }else{ %> <%= field.required?'required':'' %> <%= readonly?'readonly disabled':'' %> type="<%= field.type %>"/> <%}%>
<% } %> <% if(!inputs.readonly){ %> Reset password
<% } %>
<% include blocks/post.content.html %>