index.html 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5. <meta charset="utf-8">
  6. <title>Calculate Grocery</title>
  7. <meta name="generator" content="Bootply" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  9. <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
  10. {# <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">#}
  11. <!--[if lt IE 9]>
  12. {# <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>#}
  13. <![endif]-->
  14. <link href="{{ url_for('static', filename='css/styles.css') }}" rel="stylesheet">
  15. <link href="{{ url_for('static', filename='css/inyoung.css') }}" rel="stylesheet">
  16. </head>
  17. <body>
  18. <div class="container-full">
  19. <div class="row">
  20. <div class="col-lg-12 text-center v-center">
  21. <h1>Grocery Calculation</h1>
  22. <p class="lead">Smart-save your grocery expense.</p>
  23. <br>
  24. <br>
  25. <br>
  26. <form class="col-lg-12" action="{{url_for('login')}}" method="POST">
  27. <div class="input-group" style="width:340px;text-align:center;margin:0 auto;, ">
  28. <input class="form-control input-lg" title="Don't worry. We hate spam, and will not share your email with anyone." placeholder="Enter your email address" type="email" name="email">
  29. <input class="form-control input-lg" title="Use the password you use for everything. Trust us." placeholder="Enter your password" type="password" name="password">
  30. <span class="input-group-btn"><button class="btn btn-lg btn-primary" type="submit">GO</button></span>
  31. </div>
  32. </form>
  33. </div>
  34. </div>
  35. <form
  36. {# action="action_page.php"#}
  37. >
  38. <table id="comparison-table" style="width: auto;">
  39. <tr>
  40. <td>
  41. Item Type:
  42. </td>
  43. <td class="colspan-4" colspan="4">
  44. <input type="text" name="itemtype" placeholder="Bacon">
  45. </td>
  46. </tr>
  47. <tr>
  48. <td>
  49. Brand Name:
  50. </td>
  51. <td class="colspan-2" colspan="2">
  52. <input type="text" name="brandname1" placeholder="Maple Leaf">
  53. </td>
  54. <td class="colspan-2" colspan="2">
  55. <input type="text" name="brandname2" placeholder="Shanaor">
  56. </td>
  57. </tr>
  58. <tr>
  59. <td>
  60. Price:
  61. </td>
  62. <td class="colspan-2" colspan="2">
  63. <input type="text" name="price1" value="" >
  64. </td>
  65. <td class="colspan-2" colspan="2">
  66. <input type="text" name="price2" value="">
  67. </td>
  68. </tr>
  69. <tr>
  70. <td>
  71. Weight:
  72. </td>
  73. <td>
  74. <input type="text" name="weight1" value="">
  75. </td>
  76. <td>
  77. <select>
  78. <option>lb</option>
  79. <option>kg</option>
  80. <option>g</option>
  81. </select>
  82. </td>
  83. <td>
  84. <input type="text" name="weight2" value="">
  85. </td>
  86. <td>
  87. <select>
  88. <option>lb</option>
  89. <option>kg</option>
  90. <option>g</option>
  91. </select>
  92. </td>
  93. </tr>
  94. <tr>
  95. <td>
  96. Discounts:
  97. </td>
  98. <td>
  99. <input type="text" name="discount1" value="">
  100. </td>
  101. <td>
  102. <select>
  103. <option>percentage</option>
  104. <option>buy and get free</option>
  105. </select>
  106. </td>
  107. <td>
  108. <input type="text" name="discount2" value="">
  109. </td>
  110. <td>
  111. <select>
  112. <option>percentage</option>
  113. <option>buy and get free</option>
  114. </select>
  115. </td>
  116. </tr>
  117. </table>
  118. <br><br>
  119. <input type="text" value="{{ my_total }}" class="calculate_result" readonly>
  120. <button type="button"
  121. onclick="calc_handle(this.form[2].value,this.form[3].value,
  122. this.form[4].value, this.form[5].value,
  123. this.form[5].value, this.form[6].value)"
  124. value="calculate_btn">Calculate</button>
  125. <br><br>
  126. <input type="submit" value="Submit">
  127. </form>
  128. <p>If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".</p>
  129. <!-- /row -->
  130. <div class="row">
  131. <div class="col-lg-12 text-center v-center" style="font-size:39pt;">
  132. {# <a href="#"><i class="icon-google-plus"></i></a>#}
  133. <a href="#"><i class="icon-facebook"></i></a>
  134. <a href="#"><i class="icon-twitter"></i></a>
  135. <a href="#"><i class="icon-github"></i></a>
  136. {# <a href="#"><i class="icon-pinterest"></i></a>#}
  137. </div>
  138. </div>
  139. <br>
  140. <br>
  141. <br>
  142. <br>
  143. <br>
  144. </div>
  145. <!-- /container full -->
  146. <div class="container">
  147. <hr>
  148. <div class="row">
  149. <div class="col-md-4">
  150. <div class="panel panel-default">
  151. <div class="panel-heading">
  152. <h3>Hello.</h3>
  153. </div>
  154. <div class="panel-body">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra varius quam sit amet vulputate. Quisque mauris augue, molestie tincidunt condimentum vitae, gravida a libero. Aenean sit amet felis dolor, in sagittis nisi. Sed ac orci quis tortor imperdiet venenatis. Duis elementum auctor accumsan. Aliquam in felis sit amet augue.
  155. </div>
  156. </div>
  157. </div>
  158. <div class="col-md-4">
  159. <div class="panel panel-default">
  160. <div class="panel-heading">
  161. <h3>Hello.</h3>
  162. </div>
  163. <div class="panel-body">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra varius quam sit amet vulputate. Quisque mauris augue, molestie tincidunt condimentum vitae, gravida a libero. Aenean sit amet felis dolor, in sagittis nisi. Sed ac orci quis tortor imperdiet venenatis. Duis elementum auctor accumsan. Aliquam in felis sit amet augue.
  164. </div>
  165. </div>
  166. </div>
  167. <div class="col-md-4">
  168. <div class="panel panel-default">
  169. <div class="panel-heading">
  170. <h3>Hello.</h3>
  171. </div>
  172. <div class="panel-body">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra varius quam sit amet vulputate. Quisque mauris augue, molestie tincidunt condimentum vitae, gravida a libero. Aenean sit amet felis dolor, in sagittis nisi. Sed ac orci quis tortor imperdiet venenatis. Duis elementum auctor accumsan. Aliquam in felis sit amet augue.
  173. </div>
  174. </div>
  175. </div>
  176. </div>
  177. <div class="row">
  178. <div class="col-lg-12">
  179. <br>
  180. <br>
  181. <p class="pull-right"><a href="http://www.bootply.com">Template from Bootply</a> &nbsp; ©Copyright 2014 ACME<sup>TM</sup> Brand.</p>
  182. <br>
  183. <br>
  184. </div>
  185. </div>
  186. </div>
  187. <!-- script references -->
  188. <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
  189. <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
  190. <script src="{{ url_for('static', filename='js/scripts.js') }}"></script>
  191. </body>
  192. </html>