pyc-website

main website for pyc inc.

git clone https://9o.is/git/pyc-website.git

id-verification-form.html

(1891B)


      1 <div data-lift="IdVerification" ng-controller="IdVerificationCtrl" ng-cloak>		
      2 	<form name="form" class="smart-form client-form" ng-submit="save()" ng-upload="complete(content)" novalidate>
      3 		<fieldset>
      4 			<section>
      5 				<label><span data-lift="Loc.verify_photo_id"></span></label>
      6 				<label class="input input-file" ng-class="{{ stateSuccessError('idfile') }}"> 
      7 					<div class="button">
      8 						<input name="idfile" type="file" ng-file-select required>
      9 						<span data-lift="Loc.browse"></span>
     10 					</div>
     11 					<input type="text" readonly=""></input>
     12 					<b class="tooltip tooltip-top-left"><span data-lift="Loc.browse_tip"></span></b>
     13 					<small class="help-block">
     14 						<span data-lift="Loc.verify_photo_id_req"></span>
     15 						<br/><br/>
     16 						<span data-lift="Loc.verify_photo_id_type"></span>:
     17 						<ul class="list-unstyled">
     18 							<li>- <span data-lift="Loc.driver_license"></span></li>
     19 							<li>- <span data-lift="Loc.passport"></span></li>
     20 						</ul>
     21 					</small>
     22 				</label>
     23 			</section>
     24 			
     25 			<div class="file-preview">
     26             	<div ng-repeat="item in uploader.queue">
     27 					<div class="pull-left padding-10">
     28 						<strong>{{ item.file.name }}</strong>
     29 						<div ng-show="uploader.isHTML5" ng-thumb="{ file: item.file, height: 100 }"></div>
     30 					</div>
     31 				</div>
     32             </div>
     33 			
     34 			<div ng-show="loading" class="progress progress-striped active margin-10">
     35 				<div class="progress-bar" role="progressbar" ng-style="{ 'width': uploader.progress + '%' }"></div>
     36             </div>
     37 		</fieldset>
     38 
     39 		<footer>
     40 			<div ng-controller="IdVerificationAlert" ng-cloak>
     41 				<span data-lift="embed?what=/templates-hidden/parts/alert"></span>
     42 			</div>
     43 			
     44 			<button type="submit" class="btn btn-primary" ng-disabled="form.$invalid || filesRequired()" disabler ng-model="loading"><span data-lift="Loc.verify_my_identity"></span></button>
     45 		</footer>
     46 	</form>
     47 </div>