github.com/jasonish/buffalo@v0.8.2-0.20170413145823-bacbdd415f1b/examples/html-resource/templates/users/_form.html (about)

     1  <div>
     2    <label for="FirstName">First Name:</label>
     3    <input type="text" name="FirstName" id="FirstName" value="<%= user.FirstName %>" />
     4  </div>
     5  <div>
     6    <label for="LastName">Last Name:</label>
     7    <input type="text" name="LastName" id="LastName" value="<%= user.LastName %>" />
     8  </div>
     9  <div>
    10    <label for="Email">Email:</label>
    11    <input type="email" name="Email" id="Email" value="<%= user.Email %>" />
    12  </div>
    13  <div>
    14    <input type="submit" value="Save" />
    15  </div>