24 lines
1,003 B
HTML
24 lines
1,003 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Curious Greg - Home</title>
|
||
|
<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, {{ acct }}</h1>
|
||
|
<h2>You're all set up and ready to go.</h2>
|
||
|
<noscript>
|
||
|
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
|
||
|
</noscript>
|
||
|
<!-- <div id='logo-main'></div> -->
|
||
|
<div id='body'>
|
||
|
You haven't posted to Curious Cat in a while, so we'll wait <em>14 minutes</em> until we check for new answers.
|
||
|
</div>
|
||
|
<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>
|