Skip to content

Instantly share code, notes, and snippets.

@Akshat1903
Created December 4, 2020 09:16
Show Gist options
  • Select an option

  • Save Akshat1903/d6afda5c038f6dcd7e76b5fd22d3b04a to your computer and use it in GitHub Desktop.

Select an option

Save Akshat1903/d6afda5c038f6dcd7e76b5fd22d3b04a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>File Upload</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Welcome to our page!</h1>
<a href="{% url 'xyz:upload' %}" class="btn btn-primary">Upload File</a>
<a href="{% url 'xyz:file_list' %}" class="btn btn-success">Uploaded files list</a>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment