Remove some annyoing _blank targets.

This commit is contained in:
Graphictoria 2022-06-12 21:30:12 -04:00
parent 4a69d5d133
commit 070c79c706
2 changed files with 3 additions and 3 deletions

View File

@ -44,11 +44,11 @@
<button class="btn btn-primary px-5" type="submit">Sign In</button>
</form>
<a href="{{ route('auth.password.forgot') }}" class="text-decoration-none fw-normal center" target="_blank">Forgot your password?</a>
<a href="{{ route('auth.password.forgot') }}" class="text-decoration-none fw-normal center">Forgot your password?</a>
</div>
<div class="col">
<h5>New to Graphictoria?</h5>
<p>Creating an account takes less than a minute, and you can join a community of 10k+ users for <b>completely free</b>.<br/><a href="{{ route('auth.register.index') }}" class="btn btn-sm btn-success mt-2" target="_blank">Sign Up</a></p>
<p>Creating an account takes less than a minute, and you can join a community of 10k+ users for <b>completely free</b>.<br/><a href="{{ route('auth.register.index') }}" class="btn btn-sm btn-success mt-2">Sign Up</a></p>
</div>
</div>
</x-slot>

View File

@ -37,7 +37,7 @@
@endforeach
<button class="btn btn-success px-5 mt-3" type="submit">Sign Up</button>
</form>
<a href="{{ route('auth.login.index') }}" class="text-decoration-none fw-normal center" target="_blank">Already have an account?</a>
<a href="{{ route('auth.login.index') }}" class="text-decoration-none fw-normal center">Already have an account?</a>
<p class="text-muted mt-3">By creating an account, you agree to our <a href="/legal/terms-of-service" class="text-decoration-none fw-normal" target="_blank">Terms of Service</a> and our <a href="/legal/privacy-policy" class="text-decoration-none fw-normal" target="_blank">Privacy Policy</a>.</p>
</div>