This adds any OAuth login buttons to the invite signup page, stores the invite code for the flow duration, and associates the new user with it once successfully registered. It enables invite-only instances with OAuth-based registration.
45 lines
No EOL
728 B
Text
45 lines
No EOL
728 B
Text
/*
|
|
* Copyright © 2020 A Bunch Tell LLC.
|
|
*
|
|
* This file is part of WriteFreely.
|
|
*
|
|
* WriteFreely is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License, included
|
|
* in the LICENSE file in this source code package.
|
|
*/
|
|
|
|
.row.signinbtns {
|
|
justify-content: space-evenly;
|
|
font-size: 1em;
|
|
margin-top: 3em;
|
|
margin-bottom: 2em;
|
|
|
|
.loginbtn {
|
|
height: 40px;
|
|
}
|
|
|
|
#writeas-login, #gitlab-login {
|
|
box-sizing: border-box;
|
|
font-size: 17px;
|
|
}
|
|
}
|
|
|
|
.or {
|
|
text-align: center;
|
|
margin-bottom: 3.5em;
|
|
|
|
p {
|
|
display: inline-block;
|
|
background-color: white;
|
|
padding: 0 1em;
|
|
}
|
|
|
|
hr {
|
|
margin-top: -1.6em;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
hr.short {
|
|
max-width: 30rem;
|
|
}
|
|
} |