Blame view
pages/ambassador.html
4.35 KB
d8feb0ddb
|
1 |
<div class="panel-heading" style="background-color: #42b549;"><img src="images/white.png" style="width: 100px;"></div> |
be08b6f5e
|
2 |
<form name="applicantForm" id="signupForm"> |
d8feb0ddb
|
3 |
<div style="text-align:center;"> |
be08b6f5e
|
4 5 |
<h4>Startup Ambassador</h4> </div> |
d8feb0ddb
|
6 |
<div class="col-xs-12 col-md-4 col-md-offset-4"> |
be08b6f5e
|
7 8 9 10 11 12 |
<div class="form-all"> <table style="width: 100%;"> <tr> <td> <div class="step-one-form" > <!-- form step 1 --> |
d8feb0ddb
|
13 |
<div class="col-xs-12 input-wrapper" > |
be08b6f5e
|
14 15 16 17 18 19 |
<div id="snackbar">Error ! Please fill in all fields.</div> <div class="icon-circle-c"> <i class="material-icons" style="line-height: 31px;">assignment_ind</i> </div> <input type="text" class="text-input" required ng-model="data.name" placeholder="Startup Name" id="myBtn" name="name" ng-change="entername(data.name); namekeyPress(data.name)"> </div> |
d8feb0ddb
|
20 21 |
<div class="clearfix"></div> <div class="col-xs-12 input-wrapper" > |
be08b6f5e
|
22 23 24 25 26 27 28 29 30 |
<div id="snackbar">Error ! Please fill in all fields.</div> <div class="icon-circle-d"> <i class="material-icons" style="line-height: 30px;">email</i> </div> <input type="email" name="email" class="text-input" required class="" ng-model="data.email" placeholder="Email Address" ng-blur="emailcheck(data.email)" ng-focus="removeError()" ng-change="enteremail(data.email); emailkeyPress(data.email)"> <label class="error-message f-family" id="invalidEmail">Please enter a valid email address.</label> <label ng-if="check">Email already exist.</label> <!-- <label class="error-message f-family control-label" id="alreadyExist" ng-if="check">Email already exist.</label> --> </div> |
d8feb0ddb
|
31 32 |
<div class="clearfix"></div> <div class="col-xs-12 input-wrapper" > |
be08b6f5e
|
33 34 35 36 37 38 39 |
<div class="icon-circle-e"> <i class="material-icons" style="line-height: 30px;">phone</i> </div> <input type="number" required class="text-input" ng-model="data.mobile" placeholder="Mobile No." ng-blur="numbercheck(data.mobile)" ng-focus="removeNoError()" ng-change="enternumber(data.mobile); phonekeyPress(data.mobile)"> <label ng-if="numberCheck">Contact Number already exist.</label> </div> |
be08b6f5e
|
40 |
<div class="clearfix"></div> |
be08b6f5e
|
41 42 43 44 45 46 |
</div> <!-- close step-one-form --> </td> </tr> </table> </div> |
d8feb0ddb
|
47 48 49 50 |
<!-- CLOSE form-all --> </div> <div class="clearfix"></div> <div style="margin-bottom: 5%;" class="text-center"> |
be08b6f5e
|
51 52 |
<input type="submit" class="btn submit-button" data-toggle="modal" data-target="#myModal" ng-disabled="applicantForm.$invalid|| check|| numberCheck" value="Submit" ng-click="submit()"> </div> |
be08b6f5e
|
53 54 55 56 |
<!-- col-xs-12 col-md-8 col-md-offset-2 --> </form> <!-- CLOSE FORM --> <footer> |
d8feb0ddb
|
57 58 59 |
<img id="footer" class="img-responsive banner"> <center class="footer"> Powered By <a class="footer-link" href="http://www.viithiisys.com/" target="_blank">Viithiisys Technolgies.</a> </center> |
be08b6f5e
|
60 61 62 |
</footer> <!-- </div> CLOSE CHECK VIEW --> <div ng-if="verifyView"> |
ea3c31126
|
63 |
<div class="text-center"> |
be08b6f5e
|
64 |
<input type="button" class="btn submit-button" ng-disabled="applicantForm.$invalid" value="check the status" ng-click="update()"> |
be08b6f5e
|
65 66 67 68 69 70 71 |
</div> </div> </div> <!-- CLOSE NEW-CONTROLLER --> <div id="snacsskbar">Registration done successfully.</div> <div class="modal fade" id="myModal" role="dialog"> <div class="modal-dialog" style="left: auto;"> <div class="modal-content"> |
ea3c31126
|
72 73 |
<div class="modal-body" style="text-align:center;margin-top:5%"> <p style="font-size:24px">Your Refral Token is <b>{{data.referalToken}}</b>.</p> |
be08b6f5e
|
74 |
</div> |
ea3c31126
|
75 76 |
<div style="text-align:center;margin-bottom:5%"> <button style="color: #fff;background-color: #4CAF50;" type="button" class="btn btn-default1" data-dismiss="modal">Close</button> |
be08b6f5e
|
77 78 79 80 |
</div> </div> </div> </div> |