This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
648d133
commit b8c8dcc
Showing
3 changed files
with
76 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,8 @@ export default function ViewProjectStudent(): JSX.Element { | |
<div className="field-label"> | ||
<label className="label">{"> "}Status: </label> | ||
</div> | ||
<div className="field-body"> | ||
<div className="field"> | ||
<label className={"has-text-danger"}>Failed</label> | ||
</div> | ||
<div className="field-body field"> | ||
<label className={"has-text-danger"}>Failed</label> | ||
</div> | ||
</div> | ||
<FieldWithLabel fieldLabel={"Beschrijving"} | ||
|
@@ -28,7 +26,7 @@ export default function ViewProjectStudent(): JSX.Element { | |
<label className="label">Indiening moet bevatten:</label> | ||
</div> | ||
<div className="field-body"> | ||
<div className="field"> | ||
<div className="field"> {/*Deze moet blijven, anders gaan de elementen in elkaar*/} | ||
<li>Diagram.dgr</li> | ||
<li>verslag.pdf</li> | ||
</div> | ||
|
@@ -38,45 +36,41 @@ export default function ViewProjectStudent(): JSX.Element { | |
<div className="field-label"> | ||
<label className="label">Groepsleden(3/4): </label> | ||
</div> | ||
<div className="field-body"> | ||
<div className="field"> | ||
<table className={"table is-fullwidth"}> | ||
<thead> | ||
<tr> | ||
<th>Naam</th> | ||
<th>Email</th> | ||
<th>Laatste indiening</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Jan</td> | ||
<td>[email protected]</td> | ||
<td> -</td> | ||
</tr> | ||
<tr> | ||
<td>Peter</td> | ||
<td>[email protected]</td> | ||
<td> -</td> | ||
</tr> | ||
<tr> | ||
<td>Erik</td> | ||
<td>[email protected]</td> | ||
<td><FaCheck/></td> | ||
</tr> | ||
|
||
</tbody> | ||
</table> | ||
</div> | ||
<div className="field-body field"> | ||
<table className={"table is-fullwidth"}> | ||
<thead> | ||
<tr> | ||
<th>Naam</th> | ||
<th>Email</th> | ||
<th>Laatste indiening</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Jan</td> | ||
<td>[email protected]</td> | ||
<td> -</td> | ||
</tr> | ||
<tr> | ||
<td>Peter</td> | ||
<td>[email protected]</td> | ||
<td> -</td> | ||
</tr> | ||
<tr> | ||
<td>Erik</td> | ||
<td>[email protected]</td> | ||
<td><FaCheck/></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
<div className="field is-horizontal"> | ||
<div className="field-label"> | ||
<label className="label">Indiening(zip)</label> | ||
</div> | ||
<div className="field-body"> | ||
<div className="field"> | ||
|
||
<div className="field"> {/* Deze moet blijven */} | ||
<li className={"mb-3"}> | ||
<label className={"mr-3"}>My_files.zip </label> | ||
<button className="button"> | ||
|
@@ -89,35 +83,23 @@ export default function ViewProjectStudent(): JSX.Element { | |
<label className="file-label"> | ||
<input className="file-input" type="file" name="resume"/> | ||
<span className="file-cta"> | ||
<span className="file-icon"> | ||
<FaUpload/> | ||
<span className="file-icon"><FaUpload/></span> | ||
<span className="file-label">Kies een bestand</span> | ||
</span> | ||
<span className="file-label"> | ||
Kies een bestand | ||
</span> | ||
</span> | ||
<span className="file-name"> | ||
This_is_the_file.zip | ||
</span> | ||
<span className="file-name">This_is_the_file.zip</span> | ||
</label> | ||
</div> | ||
<div className="field-body"> | ||
<button className="button"> | ||
<FaDownload/> | ||
</button> | ||
<button className="button"><FaDownload/></button> | ||
</div> | ||
|
||
</div> | ||
</li> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="columns is-mobile is-centered"> | ||
<div className="column is-half"> | ||
<button className="button is-medium is-center" style={{backgroundColor: "#9c9afd"}}>Bevestigen | ||
</button> | ||
</div> | ||
|
||
<div className="columns is-mobile is-centered column is-half"> | ||
<button className="button is-medium is-center" style={{backgroundColor: "#9c9afd"}}>Bevestigen</button> | ||
</div> | ||
</> | ||
); | ||
|