Skip to content

Commit

Permalink
feat: open orientation/application form in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
jobara committed Nov 14, 2023
1 parent deca9ff commit a4e0158
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</li>
<li class="getting-started__list-item stack">
<h3>
<a class="counter__item" href="{{ orientation_link(Auth::user()->context) }}">
<a class="counter__item" href="{{ orientation_link(Auth::user()->context) }}" rel="noopener" target="_blank">
{{ __('Sign up and attend an orientation session') }}
@svg('heroicon-o-arrow-top-right-on-square', 'ml-1')
</a>
Expand Down Expand Up @@ -80,15 +80,15 @@
<ul role="list">
@if (Auth::user()->individual->isConsultant())
<li>
<a href="{{ settings('ac_application') }}">
<a href="{{ settings('ac_application') }}" rel="noopener" target="_blank">
{{ __('Application for Accessibility Consultant') }}
@svg('heroicon-o-arrow-top-right-on-square', 'ml-1')
</a>
</li>
@endif
@if (Auth::user()->individual->isConnector())
<li>
<a href="{{ settings('cc_application') }}">
<a href="{{ settings('cc_application') }}" rel="noopener" target="_blank">
{{ __('Application for Community Connector') }}
@svg('heroicon-o-arrow-top-right-on-square', 'ml-1')
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@

<li class="getting-started__list-item stack">
<h3>
<a href="{{ orientation_link(Auth::user()->context) }}" @can('update', $memberable)class="counter__item"@endcan>
<a href="{{ orientation_link(Auth::user()->context) }}" @can('update', $memberable)class="counter__item"@endcan
rel="noopener" target="_blank">
{{ __('Sign up and attend an orientation session') }}
@svg('heroicon-o-arrow-top-right-on-square', 'ml-1')
</a>
Expand Down Expand Up @@ -69,15 +70,15 @@
<ul role="list">
@if (Auth::user()->organization->isConsultant())
<li>
<a href="{{ settings('ac_application') }}">
<a href="{{ settings('ac_application') }}" rel="noopener" target="_blank">
{{ __('Application for Accessibility Consultant') }}
@svg('heroicon-o-arrow-top-right-on-square', 'ml-1')
</a>
</li>
@endif
@if (Auth::user()->organization->isConnector())
<li>
<a href="{{ settings('cc_application') }}">
<a href="{{ settings('cc_application') }}" rel="noopener" target="_blank">
{{ __('Application for Community Connector') }}
@svg('heroicon-o-arrow-top-right-on-square', 'ml-1')
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@

<li class="getting-started__list-item stack">
<h3>
<a href="{{ orientation_link(Auth::user()->context) }}" @can('update', $memberable)class="counter__item"@endcan>
<a href="{{ orientation_link(Auth::user()->context) }}" @can('update', $memberable)class="counter__item"@endcan
rel="noopener" target="_blank">
{{ __('Sign up and attend an orientation session') }}
@svg('heroicon-o-arrow-top-right-on-square', 'ml-1')
</a>
Expand Down

0 comments on commit a4e0158

Please sign in to comment.