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,10 +21,8 @@ h2 {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
bottom:2.5%;
|
bottom:2.5%;
|
||||||
width:95%;
|
width:95%;
|
||||||
font-size:0.8em;
|
|
||||||
}
|
|
||||||
#footer, #footer a {
|
|
||||||
color:#aaa;
|
color:#aaa;
|
||||||
|
font-size:0.8em;
|
||||||
}
|
}
|
||||||
#logo-main {
|
#logo-main {
|
||||||
height:300px;
|
height:300px;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
<div id='footer'>
|
<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 />
|
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>.
|
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>
|
</div>
|
|
@ -2,7 +2,9 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Curious Greg - Home</title>
|
<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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Welcome</h1>
|
<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>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Curious Greg</title>
|
<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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Curious Greg</h1>
|
<h1>Curious Greg</h1>
|
||||||
|
@ -18,6 +20,9 @@
|
||||||
</form>
|
</form>
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<a class='button' href='/login'>Log In</a>
|
<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>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -2,7 +2,9 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Curious Greg - Login</title>
|
<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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Log in</h1>
|
<h1>Log in</h1>
|
||||||
|
|
Loading…
Reference in a new issue