```html
<!DOCTYPE html>
<html>
<head>
<title>ネギのべと病発生予測アプリ</title>
</head>
<body>
<h1>ネギのべと病発生予測アプリ</h1>
<label for="temperature">気温(℃):</label>
<input type="number" id="temperature"><br><br>
<label for="rainfall">降水量(mm):</label>
<input type="number" id="rainfall"><br><br>
<button onclick="predictBotrytis()">予測する</button>
<hr>
<h2 id="prediction"></h2>
<script>
function predictBotrytis() {
let temperature = document.getElementById("temperature").value;
let rainfall = document.getElementById("rainfall").value;
let result = (temperature * 0.8) + (rainfall * 0.2);
if (result > 50) {
document.getElementById("prediction").innerText = "べと病が発生する可能性が高いです。対策をおこないましょう!";
} else {
document.getElementById("prediction").innerText = "べと病の発生はまだ心配いりません。安心してください!";
}
}
</script>
</body>
</html>
```