-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathteam_details.html
More file actions
87 lines (69 loc) · 2.06 KB
/
Copy pathteam_details.html
File metadata and controls
87 lines (69 loc) · 2.06 KB
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
87
<!DOCTYPE html>
<html>
<head>
<title>Team details</title>
<link rel="stylesheet" type="text/css" href="team_details.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/2.2.7/purify.js"
integrity="sha512-cykannSnDFpOTvJtRx3erBPGuLEqbYqUj0aW6ofYfRSD9K6j8JePfsh29FZmkdISfKBgpu93izQ5PVprjlzcYA=="
crossorigin="anonymous"></script>
</head>
<body class="fullpage" style="background-color: #080020;">
<div class="headings">
<h1 class="title">DEVSOC'21</h1>
<br>
<h2 class="SD">Submission Details</h2>
</div>
<nav>
<a href="teamlist.html"><button id="logout-button">Go Back</button></a>
</nav>
<form action="https://google.com">
<button type="submit" class="zip">
<img src="zip.png" alt="Save icon" />
</button>
<br>
<br>
<br>
<br>
</form>
<div class="summary">
<div id="options"></div>
<div class="text">
<h1 id="team"></h1>
<h1 id="members"></h1>
<h1 id="submitted"></h1><br>
</div>
<p id="names"></p>
</div>
<br>
<br>
<br>
<br>
<form class="myForm">
<div class="message">
<label for="msg">Demo video link:</label>
<br>
<input type="text" id="msg">
</div>
<div class="contact">
<div class="idnm">
<label for="ideaname" class="ideaname">Idea name:</label>
<br>
<input type="text" id="name">
</div>
<div class="rplk">
<label for="repolink" class="repolink">Repo link:</label>
<br>
<input type="text" id="repolink">
</div>
</div>
</form>
<div class="desc">
<label for="projdesc" class="projdesc">Project Description:</label>
<div id="projdesc">
</div>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="app.js"></script>
</body>
</html>