Skip to content

Commit

Permalink
HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
edersoares committed Jul 2, 2024
1 parent b9eaa07 commit c174c2e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<label for="password">Senha:</label>
<input type="password" name="password" id="password">
<i class="fa fa-eye-slash" id="eye" onclick="return showPassword();" aria-hidden="true"></i>
<i class="fa fa-eye-slash" id="eye" onclick="showPassword()" onkeyup="showPassword()" aria-hidden="true"></i>

<button id="form-login-submit" type="submit" class="submit">Entrar</button>

Expand Down
2 changes: 1 addition & 1 deletion resources/views/layout/blank.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id={{$config['app']['gtm']['id']}}"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
@endif
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layout/breadcrumb.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<span class="breadcrumb-current">{{ $breadcrumb->currentPage() }}</span>

@if ($breadcrumb->isBeta())
<img src="{{ Asset::get('/img/beta.png') }}" class="beta-badge" title="Versão de testes">
<img src="{{ Asset::get('/img/beta.png') }}" alt="Recurso Beta" class="beta-badge" title="Versão de testes">
@endif

</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layout/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
@if(!empty($config['app']['gtm']['id']))
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id={{$config['app']['gtm']['id']}}" height="0" width="0" style="display:none;visibility:hidden"></iframe>
<iframe src="https://www.googletagmanager.com/ns.html?id={{$config['app']['gtm']['id']}}" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
@endif
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layout/errors.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
@if(config('legacy.app.gtm.id'))
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id={{ config('legacy.app.gtm.id') }}" height="0" width="0" style="display:none;visibility:hidden"></iframe>
<iframe src="https://www.googletagmanager.com/ns.html?id={{ config('legacy.app.gtm.id') }}" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
@endif
Expand Down
8 changes: 4 additions & 4 deletions resources/views/layout/public.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id={{ config('legacy.gtm') }}" height="0" width="0" style="display:none;visibility:hidden"></iframe>
<iframe src="https://www.googletagmanager.com/ns.html?id={{ config('legacy.gtm') }}" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->

Expand Down Expand Up @@ -82,13 +82,13 @@
<div class="social-icons">
<p> Siga-nos nas redes sociais&nbsp;&nbsp;</p>
@if(config('legacy.config.facebook_url'))
<a target="_blank" href="{{ config('legacy.config.facebook_url')}}" rel="noopener"><img src="{{ Asset::get('intranet/imagens/icon-social-facebook.png') }}"></a>
<a target="_blank" href="{{ config('legacy.config.facebook_url')}}" rel="noopener"><img src="{{ Asset::get('intranet/imagens/icon-social-facebook.png') }}" alt="Facebook"></a>
@endif
@if(config('legacy.config.linkedin_url'))
<a target="_blank" href="{{ config('legacy.config.linkedin_url')}}" rel="noopener"><img src="{{ Asset::get('intranet/imagens/icon-social-linkedin.png') }}"></a>
<a target="_blank" href="{{ config('legacy.config.linkedin_url')}}" rel="noopener"><img src="{{ Asset::get('intranet/imagens/icon-social-linkedin.png') }}" alt="LinkedIn "></a>
@endif
@if(config('legacy.config.twitter_url'))
<a target="_blank" href="{{ config('legacy.config.twitter_url')}}" rel="noopener"><img src="{{ Asset::get('intranet/imagens/icon-social-twitter.png') }}"></a>
<a target="_blank" href="{{ config('legacy.config.twitter_url')}}" rel="noopener"><img src="{{ Asset::get('intranet/imagens/icon-social-twitter.png') }}" alt="Twitter"></a>
@endif
</div>
@endif
Expand Down
2 changes: 1 addition & 1 deletion resources/views/uploads/upload.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@endif
<input @if($disabled) disabled @endif class="inputfile inputfile-buttom" name="file" id="file" type="file" size="40" value="">
<label id="file" for="file"><span></span> <strong>Escolha um arquivo</strong></label>&nbsp;<br>
<img src="imagens/indicator.gif" style="margin-top: 3px; display: none;">
<img src="imagens/indicator.gif" style="margin-top: 3px; display: none;" alt="Carregando..">
<span id="span-documento" style="font-style: italic; font-size: 10px;">
São aceitos arquivos nos formatos jpg, png, jpeg e pdf. Tamanho máximo: 2MB
</span>
Expand Down

0 comments on commit c174c2e

Please sign in to comment.