-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.py
More file actions
33 lines (29 loc) · 794 Bytes
/
Copy pathConfig.py
File metadata and controls
33 lines (29 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
__author__ = 'mattstocker'
def mainpage():
text = '''
<html>
<head>
<title>PyLaunchCommand v0.1</title>
</head>
<body>
<h1>PyLaunchCommand</h1>
<p>This is the home page, you need to get the PiLauncher app to use this server!</p>
<p>For help, click<a href="mailto:matthew@freshmedialive.com">here</a></p>
</body>
</html>
'''
return text
def launchmain():
text = '''
<html>
<head>
<title>PyLaunchCommand v0.1 - Launch</title>
</head>
<body>
<h1>PyLaunchCommand</h1>
<p>You haven't selected a rocket to launch, are you sure you are using the App?</p>
<p>For help, click<a href="mailto:matthew@freshmedialive.com">here</a></p>
</body>
</html>
'''
return text