-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.59 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
36
37
38
39
40
41
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Python - sample code</title>
<!-- Styles -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<!-- Page Content -->
<div class="container" >
<div class="row">
<div class="col-lg-6">
<h1 class="mt-5">Sample Code Challenge!</h1>
<p class="lead">Powered by AWS Lambda, API Gateway, and Python 3.</p>
<hr><br>
<h4>Code Editor</h4>
<form>
<div class="form-group">
<div id="editor" class="ace-editor"># Enter your code here.</div>
</div>
<!-- <h4>Enter your input below(if any)</h4>
<div class="form-group">
<div id="input" class="ace-editor"># Enter your input here.</div>
</div> -->
<button type="submit" class="btn btn-primary">Run Code</button>
</form>
<h5 class="answer text-danger"></h5>
</div>
</div>
</div>
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.8/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="main.js"></script>
</body>
</html>