PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
wp-job-manager
/
templates
<?php /** * In job listing creation flow, this template shows above the job creation form. * * This template can be overridden by copying it to yourtheme/job_manager/account-signin.php. * * @see https://wpjobmanager.com/document/template-overrides/ * @author Automattic * @package WP Job Manager * @category Template * @version 1.31.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } ?> <?php if ( is_user_logged_in() ) : ?> <fieldset class="fieldset-logged_in"> <label><?php esc_html_e( 'Your account', 'wp-job-manager' ); ?></label> <div class="field account-sign-in"> <?php $user = wp_get_current_user(); printf( wp_kses_post( __( 'You are currently signed in as <strong>%s</strong>.', 'wp-job-manager' ) ), esc_html( $user->user_login ) ); ?> <a class="button" href="<?php echo esc_url( apply_filters( 'submit_job_form_logout_url', wp_logout_url( get_permalink() ) ) ); ?>"><?php esc_html_e( 'Sign out', 'wp-job-manager' ); ?></a> </div> </fieldset> <?php else : $account_required = job_manager_user_requires_account(); $registration_enabled = job_manager_enable_registration(); $registration_fields = wpjm_get_registration_fields(); $use_standard_password_email = wpjm_use_standard_password_setup_email(); ?> <fieldset class="fieldset-login_required"> <label><?php esc_html_e( 'Have an account?', 'wp-job-manager' ); ?></label> <div class="field account-sign-in"> <a class="button" href="<?php echo esc_url( apply_filters( 'submit_job_form_login_url', wp_login_url( get_permalink() ) ) ); ?>"><?php esc_html_e( 'Sign in', 'wp-job-manager' ); ?></a> <?php if ( $registration_enabled ) : ?> <?php printf( esc_html__( 'If you don\'t have an account you can %screate one below by entering your email address/username.', 'wp-job-manager' ), $account_required ? '' : esc_html__( 'optionally', 'wp-job-manager' ) . ' ' ); ?> <?php if ( $use_standard_password_email ) : ?> <?php printf( esc_html__( 'Your account details will be confirmed via email.', 'wp-job-manager' ) ); ?> <?php endif; ?> <?php elseif ( $account_required ) : ?> <?php echo wp_kses_post( apply_filters( 'submit_job_form_login_required_message', __( 'You must sign in to create a new listing.', 'wp-job-manager' ) ) ); ?> <?php endif; ?> </div> </fieldset> <?php if ( ! empty( $registration_fields ) ) { foreach ( $registration_fields as $key => $field ) { ?> <fieldset class="fieldset-<?php echo esc_attr( $key ); ?>"> <label for="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $field[ 'label' ] ) . wp_kses_post( apply_filters( 'submit_job_form_required_label', $field[ 'required' ] ? '' : ' <small>' . __( '(optional)', 'wp-job-manager' ) . '</small>', $field ) ); ?></label> <div class="field <?php echo $field[ 'required' ] ? 'required-field' : ''; ?>"> <?php get_job_manager_template( 'form-fields/' . $field[ 'type' ] . '-field.php', array( 'key' => $key, 'field' => $field ) ); ?> </div> </fieldset> <?php } do_action( 'job_manager_register_form' ); } ?> <?php endif; ?>
[+]
..
[-] job-preview.php
[edit]
[-] job-application-email.php
[edit]
[-] job-dashboard-login.php
[edit]
[-] content-widget-no-jobs-found.php
[edit]
[-] content-widget-job_listing.php
[edit]
[-] job-submit.php
[edit]
[-] job-pagination.php
[edit]
[-] job-submitted.php
[edit]
[-] content-no-jobs-found.php
[edit]
[-] job-filters.php
[edit]
[-] account-signin.php
[edit]
[-] content-job_listing.php
[edit]
[+]
form-fields
[-] job-listings-start.php
[edit]
[-] content-single-job_listing.php
[edit]
[-] job-filter-job-types.php
[edit]
[-] content-summary-job_listing.php
[edit]
[-] content-single-job_listing-company.php
[edit]
[-] job-listings-end.php
[edit]
[-] content-single-job_listing-meta.php
[edit]
[-] job-application.php
[edit]
[-] pagination.php
[edit]
[-] job-dashboard.php
[edit]
[+]
emails
[-] job-application-url.php
[edit]