Compare commits
No commits in common. "3910fcf0a69ebfcdba213c453f37d5ea64747213" and "db54460a85d2a535182171a56ef2de61a2bbeec8" have entirely different histories.
3910fcf0a6
...
db54460a85
6 changed files with 15 additions and 10 deletions
|
@ -21,11 +21,9 @@ h2 {
|
|||
position:absolute;
|
||||
bottom:2.5%;
|
||||
width:95%;
|
||||
color:#aaa;
|
||||
font-size:0.8em;
|
||||
}
|
||||
#footer, #footer a {
|
||||
color: #aaa;
|
||||
}
|
||||
#logo-main {
|
||||
height:300px;
|
||||
width:300px;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<div id='footer'>
|
||||
Note that Curious Greg uses a cookie to store your login state. Deleting the cookie used by Curious Greg will log you out of your account. Posting will still function as normal.<br />
|
||||
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.<br />
|
||||
Created by <a href='https://fedi.lynnesbian.space/@lynnesbian'>@lynnesbian@fedi.lynnesbian.space</a> (message her about any bugs you find). Source code is available <a href='https://git.lynnesbian.space/curious-greg'>here</a>, under the <a href='https://www.mozilla.org/en-US/MPL/2.0/'>Mozilla Public License Version 2.0</a>.
|
||||
</div>
|
|
@ -2,7 +2,9 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Curious Greg - Home</title>
|
||||
{% include 'imports.html' %}
|
||||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Welcome</h1>
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
|
@ -2,7 +2,9 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Curious Greg</title>
|
||||
{% include 'imports.html' %}
|
||||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Curious Greg</h1>
|
||||
|
@ -18,6 +20,9 @@
|
|||
</form>
|
||||
<br /><br />
|
||||
<a class='button' href='/login'>Log In</a>
|
||||
{% include 'footer.html' %}
|
||||
<div id='footer'>
|
||||
Note that Curious Greg requires first-party cookies to be enabled. You may safely delete the cookie upon completing the connection process.<br />
|
||||
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -2,7 +2,9 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Curious Greg - Login</title>
|
||||
{% include 'imports.html' %}
|
||||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Log in</h1>
|
||||
|
|
Loading…
Reference in a new issue