-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment.html
86 lines (81 loc) · 5.16 KB
/
assignment.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="https://raw.githubusercontent.com/Jean-carje/nft-preview-card-component-main/main/images/favicon-32x32.png">
<link rel="stylesheet" href="assignment.css">
<title>Blockment</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<a href="course.html" class="previous" style="color: white; font-size: 20px;">« Back</a>
<link href="https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined" rel="stylesheet">
<section class="card-container">
<div class="header-container">
<h2 class="title">Homework 3</h2>
<hr style="border: 1px solid gray; width: 100%; margin-top: 10px; margin-bottom: 20px;"/>
<div style="display: flex; justify-content: space-between;">
<div class="descr">Release Date: <div class="right">
<img src="https://raw.githubusercontent.com/Jean-carje/nft-preview-card-component-main/82a22800073516e524360d46b8bf4aafaa8d1283/images/icon-clock.svg" alt="" class="img-item">
<span class="days">3 September 2022</span>
</div></div>
<div></div>
<div class="descr">Deadline: <div class="right">
<img src="https://raw.githubusercontent.com/Jean-carje/nft-preview-card-component-main/82a22800073516e524360d46b8bf4aafaa8d1283/images/icon-clock.svg" alt="" class="img-item">
<span class="days">16 September 2022</span>
</div></div>
</div>
</div>
<div style="display: flex; justify-content: space-between; width: 100%; margin: auto; margin-top: 30px;">
<form class="form-container" enctype='multipart/form-data'>
<div class="upload-files-container">
<h2>
Upload answer
</h2>
<hr style="border: 1px solid gray; width: 100%; margin-top: 10px; margin-bottom: 20px;"/>
<button type="button" class="upload-button"> Download Questions </button>
<hr style="color: black;"/>
<div class="drag-file-area">
<span class="material-icons-outlined upload-icon"> file_upload </span>
<h3 class="dynamic-message"> Drag & drop your answer here </h3>
<label class="label"> or <span class="browse-files"> <input type="file" class="default-file-input"/> <span class="browse-files-text">Browse files</span> <span>from device</span> </span> </label>
</div>
<span class="cannot-upload-message"> <span class="material-icons-outlined">error</span> Please select a file first <span class="material-icons-outlined cancel-alert-button">cancel</span> </span>
<div class="file-block">
<div class="file-info"> <span class="material-icons-outlined file-icon">description</span> <span class="file-name"> </span> | <span class="file-size"> </span> </div>
<span class="material-icons remove-file-icon">delete</span>
<div class="progress-bar"> </div>
</div>
<button type="button" class="upload-button"> Upload Your Answer </button>
</div>
</form>
<form class="form-container" enctype='multipart/form-data'>
<div class="upload-files-container">
<h2>
Assess others' answers
</h2>
<hr style="border: 1px solid gray; width: 100%; margin-top: 10px; margin-bottom: 20px;"/>
<button type="button" class="upload-button"> Get an assignment to assess </button>
<div class="drag-file-area">
<h4>
Please assess the assignment you have downloaded carefully.
<hr style="border: 1px solid gray; width: 100%; margin-top: 10px; margin-bottom: 10px;"/>
Then fill out the boxes below based on your assessement.
</h4>
<div style="margin: 30px;"></div>
<input class="basic-slide" id="name" type="text" placeholder="Score" />
<p style="line-height:1">
</p>
<input class="basic-slide" id="name" type="text" placeholder="Comment" />
<div style="margin: 0px;"></div>
</div>
<button type="button" class="upload-button"> Submit the assessement </button>
</div>
</form>
</div>
</section>
<script src="assignment.js"></script>
</body>