Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sprint1 work #835

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,58 +177,3 @@ Each of your emails to peers and your mentors should include a subject line, gre
*What:* Answer the questions in the Sprint #1 Retro Report accessed on Gradescope. You will write your answers directly in the Gradescope assignment.

*Where:* link:https://www.gradescope.com/[Gradescope]

++++
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #ccc;
}
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
</style>
</head>
<body>
<button class="accordion">Click Here</button>
<div class="panel">
<p><b>When: </b>Due Wednesday, September 6, 2023 at 11:59 PM ET. Late work will not be accepted.</p>
<p><b>What: </b>Complete Purdue's <a href="https://www.eventreg.purdue.edu/WebCert/CourseListing.aspx?master_id=5398&master_version=1&course_area=CERT&course_number=340&course_subtitle=00">Data Classification and Handling Training</a></p><b>If you believe that data was incorrectly handled or shared, please notify datamine@purdue.edu immediately.</b>
<p><b>Where: </b>Upload a screenshot confirming your completion of the training to <a href="https://www.gradescope.com/">Gradescope</a></p>
</div>
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight) {
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
</script>
</body>
</html>
++++