Fix home strings
This commit is contained in:
@@ -2,9 +2,10 @@ import Axios from 'axios';
|
||||
import getConfig from './../Config/config'
|
||||
|
||||
async function ContactData(callData) {
|
||||
// debugger;
|
||||
var site = getConfig()[0];
|
||||
let response = await Axios.post(site.user_service_endpoint + "/sitecontact", callData);
|
||||
return response.data.result_list;
|
||||
return response.data.result;
|
||||
}
|
||||
|
||||
export default ContactData;
|
||||
@@ -2199,7 +2199,7 @@ p {
|
||||
}
|
||||
|
||||
.appie-page-title-area {
|
||||
height: 450px;
|
||||
height: 400px;
|
||||
background-image: url(../images/service-back.jpg);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
@@ -2208,7 +2208,7 @@ p {
|
||||
align-items: center;
|
||||
}
|
||||
.appie-page-title-area.appie-page-service-title-area {
|
||||
height: 450px;
|
||||
height: 400px;
|
||||
background-image: url(../images/service-back.jpg);
|
||||
}
|
||||
@media only screen and (min-width: 768px) and (max-width: 991px) {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import React from 'react';
|
||||
import getConfig from './../../Config/config'
|
||||
import ContactData from '../../Services/ContactData';
|
||||
|
||||
|
||||
function Forms() {
|
||||
|
||||
@@ -7,18 +9,30 @@ function Forms() {
|
||||
|
||||
function handleSubmit(e) {
|
||||
e.preventDefault();
|
||||
console.log('You clicked submit.');
|
||||
console.log(e);
|
||||
debugger;
|
||||
// console.log('You clicked submit.');
|
||||
// console.log(e);
|
||||
// debugger;
|
||||
const firstname = e.target['f-name'].value;
|
||||
const lastname = e.target['l-name'].value;
|
||||
const email = e.target['email'].value;
|
||||
|
||||
const phone = e.target['phone'].value;
|
||||
const subject = e.target['subject'].value;
|
||||
const message = e.target['message'].value;
|
||||
const terms = e.target['terms-conditions'].checked;
|
||||
alert(terms);
|
||||
//alert(terms);
|
||||
|
||||
var callData = [{
|
||||
"firstname": firstname,
|
||||
"lastname": lastname,
|
||||
"email": email,
|
||||
"phone": phone,
|
||||
"subject": subject,
|
||||
"message": message,
|
||||
"channel": 'WEB'
|
||||
}];
|
||||
|
||||
const callRet = ContactData(callData);
|
||||
console.log('You clicked submit========> '+ callRet);
|
||||
|
||||
}
|
||||
|
||||
@@ -84,27 +98,29 @@ alert(terms);
|
||||
<h4>Let’s Connect</h4>
|
||||
<form onSubmit={handleSubmit} className="row">
|
||||
<div className="col-md-6">
|
||||
<input type="text" name="f-name" placeholder="First Name" />
|
||||
<input type="text" name="f-name" placeholder="First Name" maxLength={15} />
|
||||
</div>
|
||||
<div className="col-md-6">
|
||||
<input type="text" name="l-name" placeholder="Last Name" />
|
||||
<input type="text" name="l-name" placeholder="Last Name" maxLength={15} />
|
||||
</div>
|
||||
<div className="col-md-6">
|
||||
<input
|
||||
type="email"
|
||||
name="email"
|
||||
placeholder="Email Address"
|
||||
placeholder="Email Address"
|
||||
maxLength={35}
|
||||
/>
|
||||
</div>
|
||||
<div className="col-md-6">
|
||||
<input
|
||||
type="number"
|
||||
name="phone"
|
||||
placeholder="Phone Number"
|
||||
placeholder="Phone Number"
|
||||
maxLength={15}
|
||||
/>
|
||||
</div>
|
||||
<div className="col-md-12">
|
||||
<input type="text" name="subject" placeholder="Subject" />
|
||||
<input type="text" name="subject" placeholder="Subject" maxLength={35} />
|
||||
</div>
|
||||
<div className="col-md-12">
|
||||
<textarea
|
||||
|
||||
@@ -15,7 +15,7 @@ function FooterHomeOne({ className }) {
|
||||
<div className="footer-about-widget">
|
||||
<div className="logo">
|
||||
<a href="#">
|
||||
<img src={logo} alt="" />
|
||||
<img src={logo} alt="WrenchBoard" />
|
||||
</a>
|
||||
</div>
|
||||
<p>
|
||||
|
||||
@@ -18,6 +18,15 @@ async componentDidMount(){
|
||||
this.setState({jobsDataResults:response});
|
||||
}
|
||||
|
||||
titleLen(title){
|
||||
let maxl = 58;
|
||||
title.replace('/', ' ');
|
||||
title.replace('www.', '');
|
||||
title.replace('.com', '');
|
||||
title.replace('http//', '');
|
||||
|
||||
return (title.length > maxl)? title.substring(0,maxl-2)+'...': title;
|
||||
}
|
||||
// if (jobsDataResults ()== null){
|
||||
// return null;
|
||||
// }
|
||||
@@ -57,7 +66,7 @@ async componentDidMount(){
|
||||
<div className="titleBox">
|
||||
<h3 className="title">
|
||||
<a href={dashUrl}>
|
||||
<span className='font_black'>{i.title} </span>
|
||||
<span className='font_black'>{this.titleLen(i.title)} </span>
|
||||
</a>
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user