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
14 changes: 14 additions & 0 deletions getform.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
if ( isset( $_POST["submit"] ) ) {
$fname=$_POST["fname"];
$email=$_POST["email"];
$title=$_POST["title"];
$message=$_POST["message"];

echo "Your name is " . $fname ."<br>" ;
echo "Sender email is " . $email ."<br>" ;
echo "Title of the message is " . $title ."<br>" ;
echo . $message ."<br>" ;

}
?>
29 changes: 27 additions & 2 deletions CV/adedayo.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="container">
<div class="title">
<div class="img-left">
<center> <img class="me_img" width="100px" height="100px" src="https://res.cloudinary.com/elijahleke/image/upload/v1566490687/START%20NG/F914373A-D9C6-40BA-AA93-7B7DBFEED522_tv9zow.png"></center>
<center> <img class="me_img" width="100px" height="100px" src="https://res.cloudinary.com/elijahleke/image/upload/v1567448171/START%20NG/Image_jj0juf.jpg"></center>
</div>
<div class="img-right">
<h2 align='right'>ADELEKE, Elijah Adedayo</h2>
Expand Down Expand Up @@ -309,5 +309,30 @@ <h2 class="referee section">REFREE</h2>
</table>
</div>

<br>

<div class="cform">
<form id="contact" action="getform.php" method="post">
<h3>Contact Me</h3>
<fieldset>
<input type="text" name="fname" placeholder="Your name" min="4" minlength="4" required>
</fieldset>
<fieldset>
<input type="email" name="email" placeholder="Your Email Address" type="email" name="email" required>
</fieldset>
<fieldset>
<input type="text" name="title" placeholder="Tittle" required>
</fieldset>
<fieldset>
<fieldset>
<textarea placeholder="Type your Message Here...." min="20" minlength="20" name="message" required></textarea>
</fieldset>
<fieldset>
<button name="submit" type="submit" value="submit" id="contact-submit" data-submit="...Sending">Submit</button>
</fieldset>
</form>


</div>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Flutterwave appreciation link : https://twitter.com/Elijahleke/status/1164817153905741824?s=20

Lucid post : https://lucid.blog/adedael/post/1566646231
Lucid post : https://lucid.blog/adedael/post/1566552539

@elijahleke
@elijahleke
70 changes: 69 additions & 1 deletion CV/style.css → style.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,72 @@ div.skills {
.company{
background-color: #9cc3e5;
padding: 2px 10px;
}
}

/* Contact Form */

.cform {
max-width:400px;
width:100%;
margin:0 auto;
position:relative;
box-sizing:border-box;


}
#contact input[type="text"], #contact input[type="email"],
#contact input[type="tel"], #contact input[type="url"],
#contact textarea, #contact button[type="submit"]
{
font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif;

}

#contact {
padding:25px;
margin:50px 0;

}

#contact h3 {
color: rgb(33, 150, 243);
display: block;
font-size: 30px;
font-weight: 400;
text-align: center;
}


fieldset {
border: medium none !important;
margin: 0 0 10px;
min-width: 100%;
padding: 0;
width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
width:100%;
border:1px solid #CCC;
background:#FFF;
margin:0 0 5px;
padding:10px;
}

#contact textarea {
height:100px;
max-width:100%;
resize:none;
}

#contact button[type="submit"] {
cursor:pointer;
width:30%;
border:none;
background:rgb(33, 150, 243);
color:#FFF;
margin:0 0 5px;
padding:10px;
font-size:15px;
}