17 lines
438 B
JavaScript
17 lines
438 B
JavaScript
import React from "react"
|
|
|
|
function UserActivation(props) {
|
|
return (
|
|
<div className="container">
|
|
<div className="content-fluid">
|
|
<div className="col-md-8 col-md-offset-2 col-xs-12">
|
|
<h2>Waiting for activation</h2>
|
|
<hr />
|
|
<h3>Hang tight! Your user will soon be activated by the administrators of this site.</h3>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
export default UserActivation;
|