Skip to content
Permalink
03600b3617
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (26 sloc) 991 Bytes
import React from 'react'
class Advertwrap extends React.Component {
public render () {
return(
<div className="container-fluid" id="fav-advertwrap">
<div className="row-fluid">
<div id="fav-advert" className="span12">
<div className="moduletable">{/* 25-sep-2020: insertar estilo para que el boton aparezca a la derecha y altura */}
<div className="externallogin" style={{float: 'right', height: 40}}>
<form action="https://www.informatica.us.es/index.php" method="post" id="external-login">
<fieldset className="loginform">
<input type="submit" className="btn btn-primary btn-small" defaultValue="Iniciar Sesión" />
</fieldset>
</form>
<div className="clr" />
</div>
</div>
{/* <div id="system-message-container">
</div>
*/}
</div>
</div>
</div>
) }
}
export default Advertwrap;