Blame view

pages/ambassador.html 588 Bytes
6ae8d3cdd   Palak Handa   add new module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  <!DOCTYPE html>
  <html>
  <head>
    <div style="text-align:center;margin-bottom:3%;">
    <h4>Startup Ambassador</h4>
    </div>
  </head>
  <body>
    <div style="text-align:center">
    <form>
      Name:
      <input type="text" name="name" ng-model="data.name">
      <br><br>
      Mobile:
      <input type="text" name="mobile" ng-model="data.mobile">
      <br><br>
      Email:
      <input type="text" name="email" ng-model="data.email">
      <br><br>
      <div>
        <button type="button" class="btn btn-secondary" value="Submit" ng-click="submit()">Submit</button>
      </div>
    </form>
    </div>
  </body>
  </html>