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: ad87d4d654683794ffa125536745ade017775140 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<head>
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/buy.css" rel="stylesheet">
	<script src='https://www.google.com/recaptcha/api.js'></script>
	<script>
	require(["require.config"], function() {
		require(["modules/submenu"])
	});
	</script>
</head>
<section class="buy-hero-section second-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">
	<h2><?php echo $l->t('Nextcloud helps you be successful.');?></h2>
	<p><?php echo $l->t('You run your own Nextcloud server, keeping your data in-house and under control. We make sure it works.');?></p>
	<div class="contact">
		<h3><?php echo $l->t('Contact us for more information and a quote fitting your use case.');?></h3>
		<p><?php echo $l->t('Your answers to the following questions will help us better understand
your project.');?></p>
		<form name="sales" method="post" action="../salessubmit/">
				<p><label for="yourname"><?php echo $l->t('Your name');?><br>
				<input  type="text" name="yourname" maxlength="60" size="60"></label></p>
				<p><label for="email">Email<br>
				<input  type="text" name="email" maxlength="80" size="60"></label></p>
				<p><label for="organization"><?php echo $l->t('Organization<br>
				<input  type="text" name="organization" maxlength="100" size="60" placeholder="Name of your organization">');?></label></p>
				<p><label for="phone"><?php echo $l->t('Phone number<br>
				<input  type="text" name="phone" maxlength="40" size="60" placeholder="Please include country code">');?></label></p>
				<p><label for="users"><?php echo $l->t('Number of users over next 12 months (estimation)<br>
				<input  type="text" name="users" maxlength="80" size="60" placeholder="Our pricing starts at 50 users.">');?></label></p>
				<p><label for="SLA"><?php echo $l->t('What kind of response time do you require?<br>
				<textarea name="SLA" maxlength="120" cols="70" rows="2" placeholder="24/7, business hours, within 3 days, etc">');?></textarea></label></p>
				<p><label for="need-phone-support"><?php echo $l->t('Do you require phone support?');?><br>
				<select name="need-phone-support">
					<option value="unsure"><?php echo $l->t('Not sure');?></option>
					<option value="yes"><?php echo $l->t('Yes');?></option>
					<option value="no"><?php echo $l->t('No');?></option>
				</select></label></p>
				<p><label for="need-support-manager"><?php echo $l->t('Would you need a dedicated Support Account Manager?');?><br>
				<select name="need-support-manager">
					<option value="unsure"><?php echo $l->t('Not sure');?></option>
					<option value="yes"><?php echo $l->t('Yes');?></option>
					<option value="no"><?php echo $l->t('No');?></option>
				</select></label></p>
				<p><label for="need-setup-help"><?php echo $l->t('Would you require assistance to set up the service or to design/review the architecture?');?><br>
				<select name="need-setup-help">
					<option value="unsure"><?php echo $l->t('Not sure');?></option>
					<option value="yes"><?php echo $l->t('Yes');?></option>
					<option value="no"><?php echo $l->t('No');?></option>
				</select></label></p>
				<p><label for="clustering"><?php echo $l->t('Are you using any sort of clustering for the application, database or storage?');?><br>
				<select name="clustering">
					<option value="unsure"><?php echo $l->t('Not sure');?></option>
					<option value="yes"><?php echo $l->t('Yes');?></option>
					<option value="no"><?php echo $l->t('No');?></option>
				</select></label></p>
				<p><label for="collabora"><?php echo $l->t('Would you need to be able to edit office documents online?');?><br>
				<select name="collabora">
					<option value="unsure"><?php echo $l->t('Not sure');?></option>
					<option value="yes"><?php echo $l->t('Yes');?></option>
					<option value="no"><?php echo $l->t('No');?></option>
				</select></label></p>
				<p><label for="LTS"><?php echo $l->t('Would you like to have the ability to stay on the exact same version of Nextcloud for several years?');?><br>
				<input  type="text" name="LTS" maxlength="80" size="60" placeholder="<?php echo $l->t('If yes, how many years?');?>"></label></p>
				<p><label for="comments"><?php echo $l->t('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>