| Current Path : /var/www/html/rkala/portal/ |
| Current File : /var/www/html/rkala/portal/index.php |
<!doctype html>
<html>
<head>
<title>IOOM332C Assignment Submissions</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/css/materialize.min.css">
<style>
* {
margin: 0;
padding: 0;
}
body {
height: 100vh;
background: cyan;
}
.head {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
}
.wrapper {
display: flex;
flex-direction: row;
justify-content: space-around;
width: 100vw;
}
.form {
display: flex;
justify-content: center;
align-items: center;
}
form {
display: flex;
background: white;
flex-direction: column;
width: 35vw;
padding: 30px;
border-radius: 5px;
align-items: center;
justify-content: center;
}
.instructions {
display: flex;
background: white;
flex-direction: column;
width: 35vw;
padding: 30px;
border-radius: 5px;
align-items: center;
}
.instructions-heading {
text-decoration: underline;
}
.instructions li {
list-style-type: disc !important;
}
.input-field {
width: 100%;
}
input[type='submit'] {
cursor: pointer;
}
</style>
</head>
<body>
<div class='head'>
<h2>IOOM332C Assignment Submission Portal</h2>
</div>
<div class="wrapper">
<div class='form'>
<form action='submit.php' method='post' enctype="multipart/form-data">
<div class="input-field">
<input type="text" name="username" id='username' />
<label for='username'>Roll Number</label>
</div>
<div class="input-field">
<input type="password" name="password" id='password' />
<label for='password'>Password</label>
</div>
<div class="input-field">
<select name="assignment">
<option value="Lab1">Lab1</option>
</select>
<label>Assignment</label>
</div>
<div class="input-field">
<select name="question">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<label>Question Number</label>
</div>
<input type='file' name='code' id='code' />
<br>
<input class="btn waves-effect waves-light" type="submit" value="Upload File" name="submit">
</form>
</div>
<div class="instructions">
<h5 class="instructions-heading">Instructions</h5>
<ul>
<li>Deadline: 02/02/2019, 12:00 am </li>
<li> Submit as a single .zip , .tar.gz file only</li>
<li> In case you receive permission denied,(it might be due to some executable in your folder or your project exceeding a size limit) kindly mail assignment before 12:00 am strictly at irm2014005@iiita.ac.in
<li> Other instructions have been elaborately dealt with in the mails sent regarding OOM Assignments, please go through them in case of any doubt. </li>
</ul>
</div>
</div>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/js/materialize.min.js"></script>
<script>
$(document).ready(function() {
$('select').formSelect();
});
</script>
</body>
</html>