html 改进的联系表格模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 改进的联系表格模板相关的知识,希望对你有一定的参考价值。

<?php 
/*
 * Template Name: Form
 */
?>
 
<?php get_header(); ?>
 
<div class="container">
	<?php $contactFormFields = get_fields(); ?>

	<div id="contact-form-single">
		<section>
			<div class="container">
				<h5 class="text-primary">Provide Your Contact Information</h5>
				<form>
					<div class="row">
						<div class="col-lg-6">
							<div class="form-group">
								<label for="firstName">First Name*</label>
								<input type="text" class="form-control" id="firstName" />
							</div>
						</div>
						<div class="col-lg-6">
							<div class="form-group">
								<label for="lastName">Last Name*</label>
								<input type="text" class="form-control" id="lastName" />
							</div>
						</div>
					</div>
					
					<div class="form-group">
						<label for="businessName">Business Name*</label>
						<input type="text" class="form-control" id="businessName">
					</div>
					
					<div class="form-group">
						<label for="bestNumberToContact">Best Number to Contact*</label>
						<input type="text" class="form-control" id="bestNumberToContact" />
					</div>
					
					<div class="form-group">
						<label for="email">Email Address*</label>
						<input type="text" class="form-control" id="email" />
					</div>
									
					<div class="form-group">
						<label for="businessLocation">Business Location*</label>
						<select name="businessLocation" class="custom-select" id="businessLocation">	
							<?php if (!empty($locations = $contactFormFields['business_locations'])) { ?>
	    						<?php foreach($locations as $location) { ?>
	    							<option value="<?= $location['emails'] ?>"><?= $location['location'] ?></option>
	    						<?php } ?>
							<?php } ?>
						</select>
					</div>
					
					<div class="form-group x-end-aligned">
						<button class="btn-primary btn">SUBMIT</button>
					</div>
				</form>
			</div>
		</section>
	</div>

</div>
 
<?php get_footer(); ?>

以上是关于html 改进的联系表格模板的主要内容,如果未能解决你的问题,请参考以下文章

联系表格无法正常工作

如何在shopify联系表格中捕获网站网址[重复]

Vue+abp树形表格

html 联系表格和登录表格

HTML 联系表格7订购表格

发送电子邮件前打印一些数据(联系表格7)