-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
35 lines (28 loc) · 1.08 KB
/
index.html
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
34
35
<!DOCTYPE html>
<html>
<link rel="shortcut icon" href="data/icon.ico" type="image/x-icon">
<style>
body {
background-image: url("/data/background.jpg");
background-color: #cccccc;
}
</style>
<body>
<h2>Welcome To Python2exe.com</h2>
<h3>Compile Python online!</h3>
<form action="compile.php" method="post" enctype="multipart/form-data">
Select Python file to compile:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Compile Script" name="submit">
</form>
<ul>
<li>Step #1. Choose a python file to compile. </li>
<li>Step #2. Click on "Compile Script"</li>
<li>Step #3. Wait for about 15 seconds while your file is compiling.</li>
</ul>
<p> Written by ? Simmons and uses <a href="https://www.pyinstaller.org/">Pyinstaller </a>
<p> If something is not working, or if you want me to add a feature, or if you have any questions, please contact me at:<a href="?">?</a>.<br>
<a href="https://github.com/Brick02/OnlinePythonCompiler">Github project </a>
<p>Beware...the source code is extremely messy.</p>
</body>
</html>