forked from mtw16-FSU/Advanced-Math-Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmissingAng.html
More file actions
36 lines (34 loc) · 1.58 KB
/
missingAng.html
File metadata and controls
36 lines (34 loc) · 1.58 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Concert+One&display=swap" rel="stylesheet">
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML' async>
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
{% load static %}
<link href="{% static 'css/main.css' %}" rel="stylesheet">
<script type="text/javascript" src="{% static 'scripts/init.js' %}"></script>
<script type="text/javascript" src="{% static 'scripts/latex.js' %}"></script>
</head>
<body onload="init(); initAlt('triangles-menu'); document.getElementById('geometry-menu').nextElementSibling.style.display= 'block'; document.getElementById('geometry-menu').style.color = '#ffffff'; document.getElementById('missingAng-menu').style.color= '#fff000'; " id="body">
<div class="main">
{% include "header.html" %}
{% include "menu.html" %}
<div class="main-section">
{% include "symbol-bar-equations-solve.html" %}
<form class="equation-form" method="post">{% csrf_token %}
{{ form.as_p }}
<div id="equation-input">
<textarea tabindex="-1" id="textarea"></textarea><div id="cursor" class="1">|</div></div>
<input class="equation-submit-button" type="submit" value="Submit">
</form>
<div id="equation-display">{{ formattedEquation }}</div>
</div>
<div style="clear:both;">
</div>
</div>
<br />
<br />
</body>
</html>