Browse Source
update backslash note in custom_text_header.js
pull/256/head
GilbN
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
CSS/addons/unraid/login-page/retro-terminal/js/custom_text_header.js
|
@ -3,7 +3,7 @@ |
|
|
// ACSII slant font
|
|
|
// ACSII slant font
|
|
|
|
|
|
|
|
|
// Needs to be inside <section id="login" class="shadow">
|
|
|
// Needs to be inside <section id="login" class="shadow">
|
|
|
// You must escape any backward slashes. "\\"
|
|
|
// YOU MUST ESCAPE ANY SINGLE BACKSLASHES LIKE SO: \\
|
|
|
|
|
|
|
|
|
let custom_text_header = ` |
|
|
let custom_text_header = ` |
|
|
<div class="custom-text-header"> <pre> __ ___ __ |
|
|
<div class="custom-text-header"> <pre> __ ___ __ |
|
@ -13,4 +13,4 @@ let custom_text_header = ` |
|
|
/_/ /_/\\____/____/\\__/_/ \\____/_/ /_/ /_/\\____/_/_/_/ /_/_/|_| |
|
|
/_/ /_/\\____/____/\\__/_/ \\____/_/ /_/ /_/\\____/_/_/_/ /_/_/|_| |
|
|
</pre> </div> |
|
|
</pre> </div> |
|
|
`;
|
|
|
`;
|
|
|
document.getElementById("login").innerHTML += custom_text_header |
|
|
document.getElementById("login").innerHTML += custom_text_header |
|
|