MIL2
MIL2
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PRHub</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f2f2f2;
}
.container {
text-align: center;
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 400px;
}
h1 {
color: #333333;
}
label {
display: block;
margin-top: 10px;
margin-bottom: 5px;
color: #555555;
}
input {
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 15px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
padding: 10px;
background-color: #4caf50;
color: #ffffff;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #45a049;
}
#result {
margin-top: 15px;
color: #333333;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>Check Your Paper</h1>
<label for="sourceLink">Enter Source Link:</label>
<input type="text" id="sourceLink" placeholder="Enter link...">
<button onclick="checkUpdate()">Check Update</button>
<p id="result"></p>
</div>
<script>
function checkUpdate() {
var sourceLink = document.getElementById("sourceLink").value;
var currentYear = new Date().getFullYear();
var updateStatus = "";
document.getElementById("result").innerText = `Status: $
{updateStatus}`;
}
</script>