explorak5_login_prueba 5.0.1 → 5.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1e2bdb1754c3a20374b65f90d975172a4323eb28ff6a07663ca4b1f645eac9be
4
- data.tar.gz: c21bf08d6d36710c08aedbb04339fd488384dfb99c5866a66b1c3d54ffe360a2
3
+ metadata.gz: d68f8fad728ff410ca4ed0e7bbe007a24f1a62c77ab712b6dd96e5dda1622f08
4
+ data.tar.gz: 5df072e1bef2922d15cf6769475e15c633bb5e54ad7ff1632aabde29428bf564
5
5
  SHA512:
6
- metadata.gz: c0ee438ded5f6cfda8d5402243435d90590572be12ccc6bb7e20d356b79fbaf2df6359e2059eb0f47e6a846bd08ae4f1ed1facecbded32746ccef1f3aa99412a
7
- data.tar.gz: b0664c96fd2f7427f2da07d235a61ea8140e73ce212f2aea6c7b92b47c69500e78c2bc2e4b638914f74b27b201989fe0c578aff7a2d9b4668ed67032ced4aa4b
6
+ metadata.gz: dc5648980c42b146ba1f5ab9df1241c0cd9b16ddb76e040a44e8a09e82bda879cfa71feef77da9e92297490a68e83416548daa3444f2301b46b44313fe288c7b
7
+ data.tar.gz: 5066120fba21052b35b296c2b6e48f86f7d2c4d5743a3bbf9b4d32e2be62422757cab8429a735c245c1c7b88f708650fad1d1e93b5e2d65c8d7d9fbdbc3b6098
@@ -31,22 +31,24 @@
31
31
  end
32
32
  %>
33
33
 
34
- <div>
35
- <button onclick="window.open('http://www.espol.edu.ec')" style="background-image:url('/images/images_k5/logoespol.png')" class="btn-img-login-espol" alt="Logo Espol"></button>
36
- </div>
37
34
 
38
- <div class="login_links">
39
- <button onclick="window.open('http://www.vinculacion.espol.edu.ec')" style="background-image:url('/images/images_k5/logovinculos.png')" class="btn-img-login-vinculos" alt="Logo Vinculos"></button>
40
- </div>
41
35
 
42
- <a href="http://www.espol.edu.ec" class="ic-Login-footer__logo-link" aria-label="By Instructure">
43
- <img src="/images/imagenes_k5/logoespol.png" alt="Logo Espol" class="btn-img-login-espol" />
44
- </a>
45
36
 
46
37
  <div class="ic-Login<%= params[:previewing_from_themeeditor] ? ' ic-Login--previewing' : '' %>">
47
38
  <div class="ic-Login__container">
48
39
  <div class="ic-Login__content">
49
40
  <div class="ic-Login__innerContent">
41
+ <div>
42
+ <%= image_tag 'images_k5/logovinculos.png' %>
43
+ </div>
44
+ <div>
45
+ <%= image_tag('images_k5/logovinculos.png', alt: 'Logo Vinculos', class: 'your-css-class') %>
46
+ </div>
47
+
48
+ <div>
49
+ <%= image_tag asset_path('images/images_k5/logovinculos.png') %>
50
+ </div>
51
+
50
52
 
51
53
  <div class="ic-Login-header">
52
54
  <%= render :partial => 'login/shared/header_logo' %>
@@ -95,7 +97,7 @@
95
97
  <%= render partial: "sso_buttons", locals: { aacs: @aacs_with_buttons } %>
96
98
  <% end %>
97
99
  <%= form_for :pseudonym_session, :url => forgot_password_path, :html => {:id => "forgot_password_form", :style => "display: none;"} do |f| %>
98
- <h1 class="ui-helper-hidden-accessible"><%= t('Forgot Password?') %></h1>
100
+ <h1 class="ui-helper-hidden-accessible"><%= t('ESPOL?') %></h1>
99
101
  <p id="forgot_password_instructions" class="ic-Login__forgot-text">
100
102
  <%= t('login_handle', "Enter your %{login_handle_name} and we'll send you a link to change your password.", :login_handle_name => login_handle_name) %>
101
103
  </p>
@@ -128,13 +130,15 @@
128
130
  <%= help_link %>
129
131
  <%= render :partial => 'shared/footer_links' %>
130
132
  </div>
131
- <a href="http://www.instructure.com" class="ic-Login-footer__logo-link" aria-label="By Instructure">
132
- <%= render partial: "login/canvas/instructure_logo", formats: [:svg] %>
133
+ <a href="http://www.espol.edu.ec" class="ic-Login-footer__logo-link" aria-label="By Instructure">
134
+ <img src="/images/imagenes_k5/logoespol.png" alt="Logo Espol" class="btn-img-login-espol" />
133
135
  </a>
136
+
137
+
134
138
  <div id="footer-epilogue" class="ic-Login-footer__links">
135
139
  <%= render :partial => 'shared/footer_epilogue' %>
136
140
  </div>
137
- </footer>
141
+ </footer>
138
142
  </div> <!-- end ic-Login__content -->
139
143
  </div>
140
144
  </div> <!-- end ic-Login -->
@@ -0,0 +1,14 @@
1
+ # lib/explorak5_login_prueba/engine.rb
2
+
3
+ module ExploraK5LoginPrueba
4
+ class Engine < ::Rails::Engine
5
+ # Configura el path para las vistas de la gema
6
+ config.paths['app/views'] << File.expand_path('lib/explorak5_login_prueba/app/views', __dir__)
7
+
8
+ initializer 'explorak5_login_prueba.assets.precompile' do |app|
9
+ app.config.assets.precompile += %w(
10
+ explorak5_login_prueba/images/*
11
+ )
12
+ end
13
+ end
14
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Explorak5LoginPrueba
4
- VERSION = "5.0.1"
4
+ VERSION = "5.0.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: explorak5_login_prueba
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 5.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Ibarra
@@ -22,6 +22,7 @@ files:
22
22
  - lib/explorak5_login_prueba/app/assets/images/images_k5/_logoespol.png
23
23
  - lib/explorak5_login_prueba/app/assets/images/images_k5/logovinculos.png
24
24
  - lib/explorak5_login_prueba/app/views/login_page/_login_content.html.erb
25
+ - lib/explorak5_login_prueba/explorak5_login_prueba.rb
25
26
  - lib/explorak5_login_prueba/version.rb
26
27
  homepage: https://github.com/kevin523523/explorak5_login
27
28
  licenses: []