Skip to content
Open
Show file tree
Hide file tree
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
29 changes: 26 additions & 3 deletions iron-comments/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,33 @@
<link rel="stylesheet" type="text/css" href="./styles/style.css">
</head>
<body>
<div class="table">

<form id="form-container">
Name: Email: Comment: Receive email updates? Submit
<form id="form-container"action="/some-url" method="post">
<div class="email-dates">
<label for="Name">Name:</label><br>
<input type="text" name="Name" id="Name"><br>
</div>

<div class="email-dates">
<label for="Email">Email:</label><br>
<input type="email" id="Email"><br>
</div>

<div class="email-dates">
<label for="Comment:">Comment:</label><br>
<textarea id="Comment:" name="Comment:"></textarea><br>
</div>

<div class="email-dates">
<form action="/some-url" method="get">
Recieve email updates?
<input type="checkbox" name="Recieve email updates" checked/><br>
</div>

<button class="button"type="submit">Submit</button>

</form>

</div>
</body>
</html>
46 changes: 44 additions & 2 deletions iron-comments/styles/style.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,53 @@
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:100,300,700');

body {
font-family: 'Roboto-Condensed';
font-weight: bold;
padding: 0;
margin: 0;
margin: 50px 50%;
padding-top: 100px;
width: 100vw;
background-color: rgb(25, 33, 41);
}

.div{
border: 5px solid rgb(255, 255, 255);
margin: 500px;

}

.table {
border: 10px;
border-color: rgb(255, 255, 255);
}

#form-container {
margin: auto;
width: 190px;
height: 350px;
margin: 15px 380px ;
padding: 8px 10px 5px 15px;
color: rgb(255, 255, 255);
border: 3px solid rgb(67, 163, 230);
border-radius: 5px;

}
.email-dates label{
padding-bottom:2px;


}
.email-dates input{
margin-bottom: 5px;
padding-right: 30px;


}
.button{
border-radius: 10px;
margin-top: 5px;
width: 60%;
height: 40px;
color: rgb(255, 255, 255);
background-color: rgb(67, 163, 230);
margin-color:
}