-
Notifications
You must be signed in to change notification settings - Fork 0
/
number_three.php
26 lines (26 loc) · 1.27 KB
/
number_three.php
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
<form action="action.php?number=three" method="post">
<div class="card text-text-center bg-dark text-light" style="width: 30rem;">
<div class="card-body">
<h5 class="card-title">
<div class="alert alert-danger">
F(X) = X<sup>2,5</sup> - X - 6
</div>
</h5>
<div class="card-text">
<div class="form-group">
<label for="value_a">Nilai Batas Bawah (a)</label>
<input name="value_a" type="number" step="0.01" class="form-control" id="value_a" placeholder="Nilai a" required>
</div>
<div class="form-group">
<label for="value_b">Nilai Batas Atas (b)</label>
<input name="value_b" type="number" step="0.01" class="form-control" id="value_b" placeholder="Nilai b" required>
</div>
<div class="form-group">
<label for="value_t">Nilai Toleransi</label>
<input name="value_t" type="number" step="0.01" class="form-control" id="value_t" value="0.001" readonly>
</div>
</div>
<button type="submit" class="btn btn-primary">Hitung</button>
</div>
</div>
</form>