PHP Classes

File: pizzerine/src/components/Contact/Contact.js

Recommend this page to a friend!
  Classes of Hillary Kollan   React Laravel Stripe MailJet Pizza Ordering   pizzerine/src/components/Contact/Contact.js   Download  
File: pizzerine/src/components/Contact/Contact.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: React Laravel Stripe MailJet Pizza Ordering
Web application to process orders of Pizza
Author: By
Last change:
Date: 1 year ago
Size: 980 bytes
 

Contents

Class file image Download
import React from 'react'; import PizzaLeft from "../../Icons/pizzaLeft.jpg"; import './Contact.css'; export default function Contact() { return ( <div className='contact'> <div className='leftSide' style={{ backgroundImage: `url(${PizzaLeft})`}}></div> <div className='rightSide'> <h1>Contact Us</h1> <form id="contact-form" method="POST"> <label htmlFor='name'>Full Name</label> <input name="name" placeholder="Enter Full name..." type="text" /> <label htmlFor='email'>Email</label> <input name="email" placeholder="Enter email" type="email" /> <label htmlFor="message"></label> <textarea rows="6" placeholder='Enter message...' name="message" required></textarea> <button type="submit">Submit</button> </form> </div> </div> ) }