在Bottle模板中使用Bootstrap后,“提交”按钮无效

时间:2016-05-21 14:32:30

标签: python templates twitter-bootstrap-3 bottle

我正在使用瓶子框架和python来建立一个网站。使用bootstrap后,我的表单的提交按钮不起作用。 这是我在button3.tpl文件中的代码:

    <head>
      <meta charset="utf-8"/>
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
      <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
      </head>
      <body>
        <div class="container">
         <h1>Insert Artist</h1>
        </div>
        <hr>
        <div class="container"
          <form role="form" method="post" action="/result4">
             <div class="form-group">
        <laber>National ID</label>
          <input class="form-control" type="text" name="ID" value=""><br>
        </div>
        <div class="form-group">
        <laber>Name</label>
          <input class="form-control" type="text" name="Name" value=""><br>
        </div>
       <div class="form-group">
         <laber>Surname</label>
         <input class="form-control" type="text" name="Surname" value=""><br>
       <div class="form-group">
         <label>Birth Year</label>
         <input class="form-control" type="number" name="Birth" min="1900" max="2016"><br>
       </div>
         <input class="form-control" type="submit" value="Update Information">
       </form>
       </div>
       <hr>
      </body>

为什么不在正确的链接中重定向?

0 个答案:

没有答案