-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcron.html
More file actions
8 lines (8 loc) · 1.83 KB
/
Copy pathcron.html
File metadata and controls
8 lines (8 loc) · 1.83 KB
1
2
3
4
5
6
7
8
<!doctype html>
<html lang="en">
<head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Cron Helper | Prabakar's GitHub Tools</title><link rel="preconnect" href="https://fonts.googleapis.com" /><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /><link href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap" rel="stylesheet" /><link rel="stylesheet" href="styles.css" /></head>
<body class="tool-page"><main class="tool-layout"><nav class="tool-nav"><a class="brand" href="index.html" aria-label="Prabakar's GitHub home"><span class="brand-mark" aria-hidden="true">PG</span><span class="brand-name">PRABAKAR'S GITHUB</span></a><div class="nav-links"><a href="index.html#tools">ALL TOOLS</a><a class="active" href="cron.html">CRON</a></div></nav>
<header class="tool-header"><p class="eyebrow">TOOL 11 / SCHEDULING</p><h1>Cron <em>Helper</em></h1><p>Understand a five-field cron expression and review the next matching run times in your local timezone.</p></header>
<section class="work-panel form-panel"><div class="form-grid single-field"><label>CRON EXPRESSION <input id="cron-input" type="text" value="0 9 * * 1-5" /></label></div><div class="control-row"><button type="button" id="cron-run">EXPLAIN SCHEDULE</button><button type="button" id="cron-sample">LOAD EXAMPLE</button></div></section><section class="work-panel result-panel"><div class="panel-header"><label>SCHEDULE DETAILS</label></div><div id="cron-output" class="result-area" aria-live="polite">Enter a five-field cron expression, such as <code>0 9 * * 1-5</code>.</div></section><p id="cron-status" class="status" aria-live="polite">Uses standard minute, hour, day-of-month, month, and day-of-week fields.</p>
</main><script src="app.js"></script></body>
</html>