Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-tooling

Merge recent updates before pushing test cases and documentation
  • Loading branch information
LeeMorinUCF committed Oct 15, 2023
2 parents d1af920 + ddef8e0 commit c914114
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 201 deletions.
201 changes: 0 additions & 201 deletions workstream1/form.html

This file was deleted.

63 changes: 63 additions & 0 deletions workstream1/templates/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,69 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">

<style>
body {
font-family: 'Lato', sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 0;
padding: 0;
}

h1 {
text-align: center;
color: #40a944;
font-size: 36px;
}

.section {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
margin: 10px;
}

label {
font-weight: bold;
}

.form-group {
margin: 10px 0;
}

input[type="text"],
input[type="number"],
input[type="checkbox"] {
width: 100%;
padding: 10px;
margin: 5px 0;
border: 1px solid #ccc;
border-radius: 3px;
}

.center {
display: flex;
justify-content: center;
}

.button {
border: 2px solid #40a944;
padding: 10px 20px;
background-color: #40a944;
color: #fff;
text-transform: uppercase;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
}

.button:hover {
background-color: #318934;
}
</style>

</head>
<body>
<h1>Enter Project Details</h1>
Expand Down

0 comments on commit c914114

Please sign in to comment.