mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
[PM-6378] Add noreferrer to external admin urls (#3827)
This commit is contained in:
parent
e22da3a53e
commit
bad9694f6c
@ -90,9 +90,12 @@
|
||||
</div>
|
||||
<div class="col-md">
|
||||
<ul class="list-unstyled">
|
||||
<li><a href="https://github.com/bitwarden/server/releases" target="_blank">Check for Server updates</a></li>
|
||||
<li><a href="https://github.com/bitwarden/clients/releases" target="_blank">Check for Web updates</a></li>
|
||||
<li><a href="https://help.bitwarden.com/article/updating-on-premise/" target="_blank">How do I update?</a></li>
|
||||
<li><a href="https://github.com/bitwarden/server/releases" target="_blank" rel="noreferrer">Check for Server
|
||||
updates</a></li>
|
||||
<li><a href="https://github.com/bitwarden/clients/releases" target="_blank" rel="noreferrer">Check for Web
|
||||
updates</a></li>
|
||||
<li><a href="https://help.bitwarden.com/article/updating-on-premise/" target="_blank" rel="noreferrer">How
|
||||
do I update?</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -24,13 +24,14 @@
|
||||
{
|
||||
<tr>
|
||||
<td>@invoice.Date</td>
|
||||
<td><a target="_blank" href="@invoice.Url" title="View Invoice">@invoice.Number</a></td>
|
||||
<td><a target="_blank" rel="noreferrer" href="@invoice.Url" title="View Invoice">@invoice.Number</a>
|
||||
</td>
|
||||
<td>@invoice.Amount.ToString("C")</td>
|
||||
<td>@(invoice.Paid ? "Paid" : "Unpaid")</td>
|
||||
@if (canDownloadInvoice)
|
||||
{
|
||||
<td>
|
||||
<a target="_blank" href="@invoice.PdfUrl" title="Download Invoice">
|
||||
<a target="_blank" rel="noreferrer" href="@invoice.PdfUrl" title="Download Invoice">
|
||||
<i class="fa fa-file-pdf-o"></i>
|
||||
</a>
|
||||
</td>
|
||||
|
@ -125,7 +125,8 @@
|
||||
@if (GlobalSettings.SelfHosted)
|
||||
{
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://help.bitwarden.com/hosting/" target="_blank">Docs</a>
|
||||
<a class="nav-link" href="https://help.bitwarden.com/hosting/" target="_blank"
|
||||
rel="noreferrer">Docs</a>
|
||||
</li>
|
||||
}
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user