Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.48 KB | None | 0 0
  1. <?php
  2.  
  3. ?>
  4.  
  5. <div class="bg-image bg-with-img content-big-padding content not-found" style=" background-image: url(<?=BxPath::tPath('/img/bg_registration.png')?>); ">
  6.     <div class="container-xs">
  7.         <div class="block-big-padding bg-white">
  8.             <div class="row text-center">
  9.  
  10.                 <div class="col-12">
  11.                     <h1><?=getMsg('MANAGER_CONFIRMATION_H1')?></h1>
  12.                 </div>
  13.                 <div class="col-12">
  14.                     <p><?=getMsg('MANAGERS_CONFIRMATION_NOTE')?></p>
  15.                 </div>
  16.                 <form action="" method="post">
  17.                     <div class="col-12">
  18.  
  19.                         <input type="hidden" value="<?=$arResult['PARTNER']?>" name="partner">
  20.  
  21.                         <div class="relative">
  22.                             <input class="jump-placeholder" placeholder="Email" name="email" data-validation="email"
  23.                                    value="<?=$arResult['EMAIL']?>">
  24.                         </div>
  25.  
  26.                         <div>
  27.                             <input value="<?=$arResult['CODE']?>" class="jump-placeholder" type="text" name="code" placeholder="Code" data-validation="required">
  28.  
  29.                         </div>
  30.  
  31.  
  32.                     </div>
  33.  
  34.                     <div class="col-12">
  35.                         <button type="submit" class="btn btn-outline btn-lg mt-2 mb-0"><?=getMsg('COMMON_CONFIRM')?></button>
  36.                     </div>
  37.                 </form>
  38.             </div>
  39.         </div>
  40.     </div>
  41. </div>
  42.  
  43. <script>
  44.     $(document).ready(function () {
  45.         <?if(!empty($arResult['MESSAGE'])):?>
  46.         console.info('<?=$arResult['MESSAGE']?>');
  47.         <?=$arResult['MESSAGE']?>();
  48.         <?endif;?>
  49.     });
  50. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement