Blame view

pages/registrationForm.html 4.62 KB
dcf89e049   Shilpi Saini   new cities added ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  
  <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">
ba9daa165   Shilpi Saini   date change
25
                          <label>Contact Number:</label>
dcf89e049   Shilpi Saini   new cities added ...
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
                          <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">
6095ea8dd   Shilpi Saini   registration closed
47
                      <div ng-switch-when="Pitch">
dcf89e049   Shilpi Saini   new cities added ...
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
                          <div class="form-group">
                              <label>Startup Name:</label>
                              <input type="community" class="form-control" ng-model="data.startupName">
                          </div>
                          <div class="form-group">
                              <label>Introduction about your startup</label>
                              <textarea type="venue" class="form-control" rows="5" ng-model="data.intro"></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">Idea
                                  </label>
                                  <label class="radio-inline">
                                      <input type="radio" name="POC/Beta" value="POC/Beta" ng-model="data.stage">POC/Beta
                                  </label>
                                  <label class="radio-inline">
                                      <input type="radio" name="Revenue" value="Revenue" ng-model="data.stage">Revenue
                                  </label>
                              </form>
                          </div>
                      </div>
                  </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>