-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 1011 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Remote File Downloader</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">Remote File Downloader</h1>
<form action="download.php" method="post" class="mt-4">
<div class="form-group">
<label for="fileUrl">File URL:</label>
<input type="url" class="form-control" id="fileUrl" name="fileUrl" required>
</div>
<div class="form-group">
<label for="fileName">File Name:</label>
<input type="text" class="form-control" id="fileName" name="fileName" required>
</div>
<button type="submit" class="btn btn-primary btn-block">Download File</button>
</form>
</div>
</body>
</html>