Commit 5801d23b28f9c19c9d1f00a8aeb7d3d9ac8a2ce4

Authored by apple
1 parent 16156ae7e6
Exists in master and in 1 other branch paytm

mandatory field define *

Showing 1 changed file with 22 additions and 22 deletions   Show diff stats
pages/registration.html
... ... @@ -17,31 +17,31 @@
17 17 <!-- form step 1 -->
18 18 <div class="col-xs-12 col-md-8 col-md-offset-2 input-wrapper" >
19 19 <div class="form-group">
20   - <label>Name:</label>
21   - <input type="name" class="form-control" ng-model="data.name">
  20 + <label>Name: *</label>
  21 + <input type="name" class="form-control" ng-model="data.name" required>
22 22 </div>
23 23 <div class="form-group">
24   - <label>Startup Name:</label>
25   - <input type="text" class="form-control" ng-model="data.startupName">
  24 + <label>Startup Name: *</label>
  25 + <input type="text" class="form-control" ng-model="data.startupName" required>
26 26 </div>
27 27 <div class="form-group">
28   - <label>Phone No:</label>
29   - <input type="number" class="form-control" ng-model="data.number">
  28 + <label>Phone No: *</label>
  29 + <input type="number" class="form-control" ng-model="data.number" required>
30 30 </div>
31 31 <div class="form-group">
32   - <label>Email:</label>
33   - <input type="email" class="form-control" ng-model="data.email">
  32 + <label>Email: *</label>
  33 + <input type="email" class="form-control" ng-model="data.email" required>
34 34 </div>
35 35 <div class="form-group">
36 36 <label>Website:</label>
37 37 <input type="text" class="form-control" ng-model="data.website">
38 38 </div>
39 39 <div class="form-group">
40   - <label>Founding Year:</label>
41   - <input type="text" class="form-control" ng-model="data.founder">
  40 + <label>Founding Year: *</label>
  41 + <input type="text" class="form-control" ng-model="data.founder" required>
42 42 </div>
43 43 <div class="form-group">
44   - <label>Business Types:</label>
  44 + <label>Business Types: *</label>
45 45 <select class="form-control" ng-model="data.business" required>
46 46 <option name="business" selected disabled value="">Choose business type</option>
47 47 <option value="B2B">B2B</option>
... ... @@ -49,7 +49,7 @@
49 49 </select>
50 50 </div>
51 51 <div class="form-group">
52   - <label>Stage:</label>
  52 + <label>Stage: *</label>
53 53 <select class="form-control" ng-model="data.stage" required>
54 54 <option name="stage" selected disabled value="">Choose Startup Stage</option>
55 55 <option value="Idea">Idea</option>
... ... @@ -57,8 +57,8 @@
57 57 </select>
58 58 </div>
59 59 <div class="form-group">
60   - <label>Sector:</label>
61   - <select class="form-control" ng-model="data.sector" ng-change="GetValue()">
  60 + <label>Sector: *</label>
  61 + <select class="form-control" ng-model="data.sector" ng-change="GetValue()" required>
62 62 <option name="sector" selected disabled value="">Choose sector</option>
63 63 <option value="Agriculture">Agriculture</option>
64 64 <option value="Healthcare">Healthcare</option>
... ... @@ -78,16 +78,16 @@
78 78 <input type="text" class="form-control" ng-model="data.sectorType" placeholder="Other Sector Name">
79 79 </div>
80 80 <div class="form-group">
81   - <label>Introduction:</label>
82   - <textarea type="text" class="form-control" ng-model="data.intro" placeholder="Give us a brief introduction in two lines" rows="3"></textarea>
  81 + <label>Introduction: *</label>
  82 + <textarea type="text" class="form-control" ng-model="data.intro" placeholder="Give us a brief introduction in two lines" rows="3" required></textarea>
83 83 </div>
84 84 <div class="form-group">
85   - <label>Revenue:</label>
86   - <textarea type="text" class="form-control" ng-model="data.revenue" placeholder="Are you generating any revenue? If yes, then mention your numbers" rows="3"></textarea>
  85 + <label>Revenue: *</label>
  86 + <textarea type="text" class="form-control" ng-model="data.revenue" placeholder="Are you generating any revenue? If yes, then mention your numbers" rows="3" required></textarea>
87 87 </div>
88 88 <div class="form-group">
89   - <label>Previous Investments:</label>
90   - <textarea type="text" class="form-control" ng-model="data.investment" placeholder="Did you receive any previous investment? If yes, then mention the investment amount and the equity you diluted?" rows="3"></textarea>
  89 + <label>Previous Investments: *</label>
  90 + <textarea type="text" class="form-control" ng-model="data.investment" placeholder="Did you receive any previous investment? If yes, then mention the investment amount and the equity you diluted?" rows="3" required></textarea>
91 91 </div>
92 92 <div class="form-group">
93 93 <label>Coupon Code:</label>
... ... @@ -98,8 +98,8 @@
98 98 <button type="button" ng-click="tokenCall(data.referalToken)" class="pull-right apply-coupen-btn">Apply</button> -->
99 99 </div>
100 100 <div class="form-group">
101   - <label>Attach Pitch Deck:</label>
102   - <input type="file" class="form-control-file" file-model="base64textString" id="filePicker" accept=".png, .jpg, .jpeg, .pdf, .ppt" />
  101 + <label>Attach Pitch Deck: *</label>
  102 + <input type="file" class="form-control-file" file-model="base64textString" id="filePicker" accept=".png, .jpg, .jpeg, .pdf, .ppt" required/>
103 103 </div>
104 104 </div>
105 105 <!-- <div class="col-xs-12 col-md-6 input-wrapper" >
... ...