Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkHershey committed Aug 19, 2024
1 parent eef1550 commit 3edd080
Showing 1 changed file with 28 additions and 9 deletions.
37 changes: 28 additions & 9 deletions web/src/components/PageDownload.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,40 @@
import RequestForm from './RequestForm'


const PageDownload = () => {

const downloadLink = "https://drive.google.com/drive/folders/1QeYXeM_pbWBSSmpRr_rKHurMpI2TxAKs?usp=sharing"

return (
<div>
<div className="jumbotron jumbotron-fluid py-5 bg-dark">
<div className="container">
<div className="container text-center">
<h1 className="display-3 text-white text-center" id="dataset-download-request-form">UAV-Human Dataset</h1>
<a href="https://github.com/sutdcv/UAV-Human" className="button btn btn-outline-secondary mt-3 mx-1" target="_blank" rel="noopener noreferrer">GitHub Repo</a>
</div>
<div className="mt-5 px-5 container text-light text-center">
<p className="alert alert-secondary">
To download the UAV-Human dataset, you need to complete the form below and agree to our terms & conditions.
</div>
<div className="container my-4 py-4 px-3 jumbotron jumbotron-fluid text-center" style={{ minWidth: 400 }}>

<h5 className="mb-4">Terms & Conditions</h5>

<div className="container text-center modal-dialog-centered align-items-center flex-column">
<p className={"alert alert-primary text-start"} style={{ maxWidth: 500 }}>
The Singapore University of Technology and Design (SUTD) provides access
to the <em className="fw-bold">UAV-Human Dataset</em> (referred to as "the Dataset" below)
under the following conditions:
<p></p>
<ul>
<li>The Dataset should only be used for non-commercial scientific research purposes. Any other use is strictly prohibited.</li>
<li>Showing videos and images from the Dataset are only allowed in academic publications or presentations.</li>
<li>The Dataset must not be shared or redistributed in part or full with any third-party individual or organization.</li>
<li>The Dataset must not be altered to produce a new dataset without written consent from the authors.</li>
</ul>
</p>
</div>
</div>
<div className={"container my-4 py-4 px-3 jumbotron shadow"} style={{minWidth: 400}}>
<RequestForm />

<p className="text-center">By downloading the dataset, you agree to the terms and conditions above.</p>

<div className="container">
<a href={downloadLink} className="button btn btn-outline-primary mt-3 mx-1" target="_blank" rel="noopener noreferrer">Download Here</a>
</div>
</div>
</div>
)
Expand Down

0 comments on commit 3edd080

Please sign in to comment.