82 lines
3.3 KiB
PHP
82 lines
3.3 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* The Template for the signup form
|
||
|
|
*
|
||
|
|
* This template can be overridden by copying it to yourtheme/eb-templates/booking/form/coupon.php.
|
||
|
|
*
|
||
|
|
* Author: Eagle Themes
|
||
|
|
* Package: Eagle-Booking/Templates
|
||
|
|
* Version: 1.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
defined('ABSPATH') || exit;
|
||
|
|
?>
|
||
|
|
|
||
|
|
<div class="eb-tab-content signup" data-tab="signup">
|
||
|
|
<form id="eb_user_signup_booking_form" action="" method="POST">
|
||
|
|
|
||
|
|
<div id="eb_user_sign_up_response" class="eb-alert eb-alert-small mb20" role="alert" style="display:none">
|
||
|
|
<span id="eb_user_sign_up_response_text"></span>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="eb-g-lg-2 eb-g-md-1">
|
||
|
|
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="email" id="eb_user_sign_up_username" class="eb-field">
|
||
|
|
<label><?php echo __('Username','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="email" id="eb_user_sign_up_email" class="eb-field">
|
||
|
|
<label><?php echo __('Email','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="password" id="eb_user_sign_up_password" class="eb-field" autocomplete="on">
|
||
|
|
<label><?php echo __('Password','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="text" id="eb_user_sign_up_first_name" class="eb-field">
|
||
|
|
<label><?php echo __('First Name','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="text" id="eb_user_sign_up_last_name" class="eb-field">
|
||
|
|
<label><?php echo __('Last Name','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<input type="tel" id="eb_user_sign_up_phone" class="eb_user_phone_field eb-field" placeholder="<?php echo __('Phone','eagle-booking') ?> *">
|
||
|
|
|
||
|
|
<?php if ( eb_get_option('eb_booking_form_fields')['address'] == true ) : ?>
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="text" id="eb_user_sign_up_address" class="eb-field">
|
||
|
|
<label><?php echo __('Address','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
<?php endif ?>
|
||
|
|
|
||
|
|
<?php if ( eb_get_option('eb_booking_form_fields')['city'] == true ) : ?>
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="text" id="eb_user_sign_up_city" class="eb-field">
|
||
|
|
<label><?php echo __('City','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
<?php endif ?>
|
||
|
|
|
||
|
|
<?php if ( eb_get_option('eb_booking_form_fields')['country'] == true ) : ?>
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="text" id="eb_user_sign_up_country" class="eb-field">
|
||
|
|
<label><?php echo __('Country','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
<?php endif ?>
|
||
|
|
|
||
|
|
<?php if ( eb_get_option('eb_booking_form_fields')['zip'] == true ) : ?>
|
||
|
|
<div class="eb-form-col">
|
||
|
|
<input type="text" id="eb_user_sign_up_zip" class="eb-field">
|
||
|
|
<label><?php echo __('ZIP','eagle-booking') ?></label>
|
||
|
|
</div>
|
||
|
|
<?php endif ?>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</form>
|
||
|
|
</div>
|