-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path22IT036_22IT114.html
27 lines (26 loc) · 962 Bytes
/
22IT036_22IT114.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Factorization Methods</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Factorization Methods</h1>
<form method="POST" action="process.php">
<label for="number">Enter a number:</label>
<input type="number" name="number" id="number" required>
<br></br>
<label for="method">Choose a method:</label>
<select name="method" id="method" required>
<option value="fermat">Fermat's Factorization</option>
<option value="trial">Trial Division</option>
<option value="pollard">Pollard's Rho</option>
</select>
<button type="submit">Factorize</button>
</form>
</div>
</body>
</html>