Skip to content

Commit

Permalink
#8867 add login as guest button (#8873)
Browse files Browse the repository at this point in the history
  • Loading branch information
webplusai authored Dec 29, 2024
1 parent 2a9f646 commit b4583ef
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion plugins/tiddlywiki/multiwikiserver/auth/form/login/header.tid
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>

0 comments on commit b4583ef

Please sign in to comment.