forked from TiddlyWiki/TiddlyWiki5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TiddlyWiki#8867 add login as guest button
- Loading branch information
Showing
1 changed file
with
39 additions
and
1 deletion.
There are no files selected for viewing
40 changes: 39 additions & 1 deletion
40
plugins/tiddlywiki/multiwikiserver/auth/form/login/header.tid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,41 @@ | ||
title: $:/plugins/tiddlywiki/multiwikiserver/auth/form/login/header | ||
|
||
<h1>TiddlyWiki Login</h1> | ||
<div class="login-header"> | ||
<h1>Be our Guest</h1> | ||
<a class="" href="/">Explore as Guest</a> | ||
<h2>TiddlyWiki Login</h2> | ||
</div> | ||
|
||
<style> | ||
.login-header { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 5px; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.login-header h1 { | ||
font-size: 30px; | ||
} | ||
|
||
.login-header h2 { | ||
font-size: 28px; | ||
} | ||
|
||
.login-header h1, | ||
.login-header h2 { | ||
font-weight: bold; | ||
} | ||
|
||
.login-header a { | ||
padding: 10px 20px; | ||
background-color: #1366a8; | ||
color: #FFF; | ||
text-decoration: none; | ||
cursor: pointer; | ||
border-radius: 5px; | ||
width: 85%; | ||
text-align: center; | ||
} | ||
</style> |