Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.48 KB | None | 0 0
  1. {% extends 'BaseTemplate.nopage' %}
  2.  
  3. {% set jobFields = customFields(job, [1], false) %}
  4. {% set jobDescription = jobFields[1] %}
  5. {% set jobUrl = buildJobDetailUrl(PORTAL_URL, job) %}
  6.  
  7. {% block extraBodyClass %}inner-page reg-page user-type{% endblock %}
  8.  
  9. {% block metadescription %}
  10. <meta property="og:title" content="{{ job.jobname|e }}" />
  11. <meta property="og:description" content="{{ jobDescription|striptags|limit(200) }}" />
  12. <meta name="Description" content="{{ META_DESCRIPTION }}" />
  13. {% endblock %}
  14.  
  15. {% block navigation %}
  16. {% if USER or CONTACT_CREATED %}{% endif %}
  17. {% include 'tpt/navigation.tpt' %}
  18. {% endblock %}
  19.  
  20. {% block content %}
  21. {{ pageType('login,viewJob') }}
  22. {{ setApplyPage( profilePage ) }}
  23.  
  24. {{ setSocialRedirect(PORTAL_URL ~ 'SocialRegister') }}
  25. {{ setLoginAftertSocial(false) }}
  26.  
  27. {{ joblist('12') }}
  28. {{ setJobId(job.jobId) }}
  29.  
  30. {% set applicationUrl = registerPage %}
  31.  
  32. <div id="apply-methods">
  33.  
  34. <div class="first-time-app">
  35.  
  36. <h3>FIRST TIME <span>APPLICANTS</span></h3>
  37.  
  38. <ul class="first-options-apply voutique-type">
  39.  
  40. <li>
  41. <a href="{{ buildUrl(applicationUrl, URL_QUERY, extraParams) }}" class="saveButton">Create your profile now!</a>
  42. </li>
  43.  
  44. </ul>
  45. <!-- first-options-apply -->
  46.  
  47. <p>Or register using:</p>
  48.  
  49. <div class="first-options-apply multiple-type">
  50.  
  51. <ul class="ul-social">
  52. <div id="social-jobdetail">
  53. <ul>
  54. <li class="social-facebook">
  55. <a rel="nofollow"
  56. target="_blank"
  57. onclick="return openSocialSharePopup(this.href, 'Facebook');"
  58. title="Facebook"
  59. href="{{ LOGINWITHFACEBOOK }}">
  60. </a>
  61. </li>
  62. <li class="social-gplus">
  63. <a rel="nofollow"
  64. target="_blank"
  65. onclick="return openSocialSharePopup(this.href, 'GooglePlus');"
  66. title="Google Plus"
  67. href="{{ LOGINWITHGOOGLEPLUS }}">
  68. </a>
  69. </li>
  70. <li class="social-linkedin">
  71. <a rel="nofollow"
  72. target="_blank"
  73. onclick="return openSocialSharePopup(this.href, 'Linkedin');"
  74. title="LinkedIn"
  75. href="{{ LOGINWITHLINKEDIN }}">
  76. </a>
  77. </li>
  78. </ul>
  79. </div>
  80. </ul>
  81.  
  82. </div>
  83. <!-- first-options-apply -->
  84.  
  85. </div>
  86. <!-- first-time-app -->
  87.  
  88. <div class="Login">
  89.  
  90. <h3>Have you applied before?</h3>
  91. <p>Enter your details below:</p>
  92.  
  93. <div class="loginSignBox">
  94. <form action="{{ buildUrl(loginPage, URL_QUERY) }}" autocomplete="on" method="post" id="Login" class="generalForm">
  95. <div>
  96. <input type="text" name="username" id="username" placeholder="Username" value="{{ username }}" required="required" autofocus="autofocus" />
  97. </div>
  98. {% if ERROR.username %}<p class="errorMessage">{{ ERROR.username }}</p>{% endif %}
  99. <div>
  100. <input type="password" name="Password" id="password" placeholder="Password" required="required" />
  101. </div>
  102. {% if ERROR.password %}<p class="errorMessage">{{ ERROR.password }}</p>{% endif %}
  103. {% if ERROR.login %}<p class="errorMessage ">{{ ERROR.login }}</p>{% endif %}
  104. <p>
  105. <a href="{{ PORTAL_URL ~ 'ResetPassword?forgotpassword=true' }}">Forgot your password?</a>
  106. </p>
  107.  
  108. <div id="sign-social-media" class="loginSocialMedia">
  109. <ul class="ul-social">
  110. <div id="social-jobdetail">
  111. <ul>
  112. <li class="social-facebook">
  113. <a rel="nofollow"
  114. target="_blank"
  115. onclick="return openSocialSharePopup(this.href, 'Facebook');"
  116. title="Facebook"
  117. href="{{ LOGINWITHFACEBOOK }}">
  118. </a>
  119. </li>
  120. <li class="social-gplus">
  121. <a rel="nofollow"
  122. target="_blank"
  123. onclick="return openSocialSharePopup(this.href, 'GooglePlus');"
  124. title="Google Plus"
  125. href="{{ LOGINWITHGOOGLEPLUS }}">
  126. </a>
  127. </li>
  128. <li class="social-linkedin">
  129. <a rel="nofollow"
  130. target="_blank"
  131. onclick="return openSocialSharePopup(this.href, 'Linkedin');"
  132. title="LinkedIn"
  133. href="{{ LOGINWITHLINKEDIN }}">
  134. </a>
  135. </li>
  136. </ul>
  137. </div>
  138. </ul>
  139. </div>
  140.  
  141. <div>
  142. <button name="login" type="submit" class="nextButton blue-button">CONTINUE</button>
  143. </div>
  144. </form>
  145. </div>
  146. <!-- loginSignBox -->
  147. </div>
  148. <!-- Login -->
  149. </div>
  150. <!-- apply-methods -->
  151. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement