Calorie counting web application written in the Go language

signup.html 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <div id="signup" class="jumbotron" style="display: none;">
  2. <h1>Let's get you started...</h1>
  3. <div class="row">
  4. <div class="col-md-12 text-center">
  5. <img src="/public/img/signup.png" />
  6. </div>
  7. </div>
  8. <form action="/goal" method="post" role="form" class="form-horizontal">
  9. <input name="id" type="hidden" value="" />
  10. <div class="row">
  11. <div class="col-md-4 text-center">
  12. <h3>Step 1: Sign In</h3>
  13. <p>
  14. Done and done ;)
  15. </p>
  16. </div>
  17. <div class="col-md-4 text-center">
  18. <h3>Step 2: Set A Goal</h3>
  19. <p>
  20. <div class="form-group col-md-12">
  21. <input name="calories" type="range" min="1000" max="3000" step="100" value="" class="form-control" />
  22. <p style="padding-top: 0.35em;"><label for="calories">Daily:</label>&nbsp;<span class="goal">2000</span></p>
  23. </div>
  24. </p>
  25. </div>
  26. <div class="col-md-4 text-center">
  27. <h3>Step 3: Have Fun!</h3>
  28. <p>
  29. <div class="col-md-offset-2 col-md-8">
  30. <input name="set" type="submit" value="Get Started" class="form-control btn btn-primary" />
  31. </div>
  32. </p>
  33. </div>
  34. </div>
  35. </form>
  36. </div>