Welcome to mirror list, hosted at ThFree Co, Russian Federation.

page-buy.php - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: add3019084564a2b1b5f77672db703203f3dc8f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<script src='https://www.google.com/recaptcha/api.js'></script>
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/enterprise.js"></script>
<section class="buy-hero-section enterprise-menu">
	<div class="container-fluid background buy-background">
		<div class="container">
			<div class="row">
				<div class="col-md-6 topheader">
					<h1><?php echo $l->t('Contact us for a quote');?></h1>
					<h2><?php echo $l->t('Our sales team will help you determine the best solution for your business needs');?></h2>
				</div>
			</div>
		</div>
	</div>
	<div class="container-fluid menu" id="menuAnchor">
		<div class="container buttons">
			<a class="btn btn-primary" href="/pricing">pricing plans</a>
			<a class="btn btn-primary" href="/enterprise">enterprise offering</a>
		</div>
	</div>
</section>

<div class="container">
	<div class="contact">
		<h3><?php echo $l->t('Contact us for more information and a quote fitting your use case.');?></h3>
		<form name="sales" method="post" action="../salessubmit/">
				<p><?php echo $l->t('<label for="yourname">Your name<br>
				<input  type="text" name="yourname" maxlength="60" size="60"></label>');?></p>
				<p><?php echo $l->t('<label for="email">Email<br>
				<input  type="text" name="email" maxlength="80" size="60"></label>');?></p>
				<p><?php echo $l->t('<label for="organization">Organization<br>
				<input  type="text" name="organization" maxlength="100" size="60" placeholder="Name of your organization"></label>');?></p>
				<p><?php echo $l->t('<label for="users">Number of users<br>
				<input  type="text" name="users" maxlength="80" size="60" placeholder="Estimated number of users looking to use Nextcloud"></label>');?></p>
				<p><?php echo $l->t('<label for="phone">Phone number<br>
				<input  type="text" name="phone" maxlength="40" size="60" placeholder="Please include country code"></label>');?></p>
				<p><?php echo $l->t('<label for="comments">Your message<br />
				<textarea  name="comments" maxlength="2000" cols="80" rows="8" placeholder="Let us know how we can help you!"></textarea></label>');?></p>
				<td colspan="2" style="text-align:center">
				<div class="g-recaptcha" data-sitekey="<?php echo RECAPTCHA_SITEKEY; ?>"></div>
				<input type="submit" value=" Submit inquiry ">
		</form>
	</div>
</div>