35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}
|
|
Max/Min
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="col-sm-12" style="background-color: #0f11175c; padding: 20px; border-radius: 8px">
|
|
<font color="white" size="5">
|
|
<span>Function you would like to Max/Min:</span>
|
|
<form action="/maxmin" method="post">
|
|
<div class = "form-group">
|
|
<input autocomplete="off" autofocus class="form-control" name="function" placeholder="Function" type="text" id="function">
|
|
</div>
|
|
<p id="jp">Your Input Will Appear Here</p>
|
|
<div class = "form-group">
|
|
<input autocomplete="off" autofocus class="form-control" name="lowerbound" placeholder="Lowerbound" type="text" id="lowerbound">
|
|
<input autocomplete="off" autofocus class="form-control" name="upperbound" placeholder="Upperbound" type="text" id="upperbound">
|
|
</div>
|
|
<button class="btn btn-warning" type="submit">Optimize</button>
|
|
</form>
|
|
</font>
|
|
</div>
|
|
|
|
<script>
|
|
let value = $("#function").val();
|
|
$(document).ready(function(){
|
|
$('#function').on('input', function() {
|
|
let testvalue = $('#function').val();
|
|
$('#jp').html("$f(x) = "+testvalue+"$");
|
|
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
|
|
});
|
|
})
|
|
</script>
|
|
{% endblock %} |