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

primera version formEnviar, no css #12

Open
wants to merge 1 commit into
base: main_old
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
53 changes: 53 additions & 0 deletions src/components/formEnviar.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,59 @@
import React, { Component} from 'react'
import {Form} from 'react-bootstrap'



const FormEnviar = () =>{
return(
<>
<div className='row'>
<div className='col-md-6 grid-margin stretch-card'>
<div className='card'>
<div className='card-body'>
<h3 className='card-Title'> Rellenar aqui</h3>
<p className='card-description'> lorem ipsum bla bla</p>
<form>
<Form.Group>
<label> Insrte tu correo de la UPM</label>
<Form.Control type="email" className="form-control" placeholder="Email de la UPM"/>
</Form.Group>

<Form.Group className="row">
<label className='col-sm-3 col-form-label'> Para quien es tu piruleta?</label>
<div className='col-sm-9'>
<select className="form-control">
<option>Alumno/a</option>
<option>Profesor/a</option>
<option>Pas</option>
</select>

</div>
</Form.Group>

<Form.Group>
<label> Como se llama/ Cual es su instagram?</label>
<Form.Control type="text" className="form-control" placeholder="Su nombre o ig user"/>
</Form.Group>

<Form.Group>
<label> Puedes darnos mas informacion sobre a quien se la mandamos?</label>
<Form.Control type="text" className="form-control" placeholder="Grupo/Despacho/Donde trabaja"/>
</Form.Group>

<Form.Group>
<label> Es tu momento de poner tu notita de amor, si quieres</label>
<textarea className='form-control' rows="3"></textarea>

</Form.Group>

<button type='submit' className='btn btn-primary mr-2'>Enviar</button>
<button className='btn btn-light'>Cancel</button>

</form>
</div>
</div>
</div>
</div>
</>
)
}
Expand Down