16 lines
412 B
HTML
16 lines
412 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Calculator</title>
|
|
</head>
|
|
<body>
|
|
<form action="">
|
|
<label for="result">Result: </label><br>
|
|
<input type="text" id="result" name="result" value="{{result|safe}}" disabled><br>
|
|
<label for="operation">Operation: </label><br>
|
|
<input type="text" id="operation" name="operation"><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|