registrationForm.html
5.53 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<div class="header">
<div>
<!-- <img src="images/LOGO.png" class="logojalsa"><span class="jalsaheadr" style="">2018</span> -->
<!-- <img src="images/SartupJalsa_Logo.png" style="width:200px;position:relative;"> -->
</div>
<div class="clearfix"></div>
<div class="myLoaderWrap" ng-show="loading">
<img class="ajax-loader" src="images/loader.gif">
</div>
</div>
<!-- CLOSE HEADER -->
<form name="applicantForm">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<div class="form-all">
<div class="col-xs-12 col-md-8 col-md-offset-2 input-wrapper">
<h4 class="title">REGISTRATION FORM</h4>
<div style="color: #FF6600;margin-bottom: 15px;">GENERAL DETAILS</div>
<div>
<div class="form-group">
<label>Name:</label>
<input type="name" class="form-control" ng-model="data.name" required>
</div>
<div class="form-group">
<label>Contact Number:</label>
<input type="text" class="form-control" ng-model="data.number" required>
<!-- <label class="error-message f-family" id="invalidNumber">Please enter only numeric value.</label> -->
</div>
<div class="form-group">
<label>Email ID:</label>
<input type="email" class="form-control" ng-model="data.email" required>
</div>
<div class="form-group">
<p style="font-weight: bold;">How do you want to register?</p>
<!-- <input type="community" class="form-control" ng-model="data.community" required> -->
<form>
<label class="radio-inline">
<input type="radio" name="Attend" value="Attend" ng-model="data.register" required>Attend
</label>
<label class="radio-inline">
<input type="radio" name="Pitch" value="Pitch" ng-model="data.register" required>Pitch
</label>
</form>
</div>
</div>
<div ng-switch="data.register">
<div ng-switch-when="Pitch">
<div class="form-group">
<label>Startup Name:</label>
<input type="startupName" class="form-control" ng-model="data.startupName" required>
</div>
<div class="form-group">
<label>Introduction about your startup</label>
<textarea type="intro" class="form-control" rows="5" ng-model="data.intro" required></textarea>
</div>
<div class="form-group">
<label>Stage</label>
<!-- <input type="people" class="form-control" ng-model="data.people" required> -->
<form>
<label class="radio-inline">
<input type="radio" name="Idea" value="Idea" ng-model="data.stage" required>Idea
</label>
<label class="radio-inline">
<input type="radio" name="POC/Beta" value="POC/Beta" ng-model="data.stage" required>POC/Beta
</label>
<label class="radio-inline">
<input type="radio" name="Revenue" value="Revenue" ng-model="data.stage" required>Revenue
</label>
</form>
</div>
</div>
</div>
<!-- <div class="form-group">
<label>Coupon Code:</label> -->
<!-- <input type="text" class="form-control" placeholder="If you have a coupon code then apply here"ng-model="data.referalToken"> -->
<!-- <input type="text" class="form-control" ng-model="data.referalToken" style="position: relative;" placeholder="If you have a coupon code then apply here" ng-required="referalToken" ng-change="changeReferalIconColor(data.referalToken)">
<i class="material-icons coupon-approved" ng-if="tokencheck == true">check</i>
<i class="material-icons coupon-approved" style="color:red;" ng-if="tokencheck == false">close</i>
<button type="button" ng-click="tokenCall(data.referalToken)" class="pull-right apply-coupon-btn">Apply</button>
</div> -->
</div>
<div class="clearfix"></div>
<div class="text-center">
<input type="submit" class="btn submit-button-form" style="outline: none;" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="formRegister()">
</div>
</div>
</div>
</form>
<!-- CLOSE FORM -->
<!-- </div> CLOSE CHECK VIEW -->
<span ng-show="span == true">
<span id="chennai"></span>
<span id="mumbai"></span>
<span id="hyderabad"></span>
<span id="kolkata"></span>
<span id="delhi"></span>
<span id="ahmedabad"></span>
<span id="bengaluru"></span>
<span id="jaipur"></span>
<span id="kanpur"></span>
<span id="dharamsala"></span>
</span>