-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstu_index.php
41 lines (41 loc) · 2.27 KB
/
stu_index.php
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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<body>
<div class="container">
<div style="height: 100px;width: 100%;">
<img src="image/cselogo.jpg" style="width: 20%">
<div class="line-fixed" style="font-weight: 700">BSMRSTU</div>
<a href="stu_logout.php">(logout)</a>
</div>
<div class="form" style="padding-top: 200px;">
<form>
<div class="form-group">
<label for="exampleInputEmail1">Course Name</label>
<input type="form-text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<label for="exampleInputEmail1">Section</label>
<input type="form-text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<label for="exampleInputEmail1">Assignment Name</label>
<input type="form-text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<label for="exampleInputEmail1">Teacher Name</label>
<input type="form-text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<label for="exampleInputEmail1">Teacher Email</label>
<input type="form-text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<label for="exampleInputEmail1">Student Name</label>
<input type="form-text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<label for="exampleInputEmail1">Student Id</label>
<input type="form-text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<label for="myfile">Select a file:</label>
<input type="file" id="myfile" name="myfile">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>
</body>
</html>