Version 13.131 by Alex Cotiugă on 2026/05/02 08:39

Show last authors
1 {{velocity wiki="false"}}
2 #if ($xcontext.action == 'get')
3 #set ($message = '')
4 #set ($statusCode = 200)
5
6 #set ($statusCode = 400)
7 #set ($message = 'error')
8
9 #set ($discard = $response.setStatus($statusCode))
10 #jsonResponse({'message': $message})
11 #end
12 {{/velocity}}
13
14 {{velocity}}
15 #set ($discard = $xwiki.ssx.use('contact.WebHome'))
16 #set ($xobject = $doc.getObject('Agnease.Code.ContactForm.ContactFormClass'))
17 #set ($xclass = $xobject.xWikiClass)
18 #set ($editing = true)
19 = Tell Us More About Your Project =
20 You do not need to have a full specification. A short description is enough to start the conversation.
21 {{html clean="false"}}
22 <div class="row">
23 <div class="xform col-xs-7">
24 <form id="contactForm">
25 <dl>
26 #foreach ($property in $xclass.properties)
27 #if ($property.name == 'hosting')
28 <hr>
29 <h3>Optional project details</h3>
30 <p>These details help us understand the scope and suggest practical next steps.</p>
31 #end
32 <dt #if (!$editing && $hasEdit)
33 class="editableProperty"
34 #set ($xobjectPropertyReference = $xobject.getPropertyReference($property.name))
35 data-property="$escapetool.xml($services.model.serialize($xobjectPropertyReference))"
36 data-property-type="object"#end>
37 ## This must match the id generated by the $doc.display() method below.
38 #set ($propertyId = "${xclass.name}_${xobject.number}_$property.name")
39 <label#if ($editing) for="$escapetool.xml($propertyId)"#end>
40 $escapetool.xml($property.translatedPrettyName)
41 </label>
42 ## Support for specifying a translation key as hint in the property definition.
43 <span class="xHint">$!escapetool.xml($services.localization.render($property.hint))</span>
44 </dt>
45 <dd>$doc.display($property.name, 'edit').replace('{{html clean="false" wiki="false"}}', '').replace("{{/html}}", '')</dd>
46 #end
47 #if (!$xclass.properties || $xclass.properties.size() == 0)
48 ## Keep the empty definition term in order to have valid HTML.
49 <dt></dt>
50 <dd>$escapetool.xml($services.localization.render('xclass.defaultObjectSheet.noProperties'))</dd>
51 #end
52 </dl>
53 <p>Your information will only be used to respond to this request.</p>
54 ##<p>Your information will only be used to respond to this request. See the Privacy Policy for details.</p>
55 <input id="contactSubmit" type="submit" class="btn btn-primary" value="Send my request">
56 </form>
57 {{/html}}
58 {{html clean="false" wiki="true"}}
59 <div class="reviewNotifications">
60 <div class="hidden reviewNotificationSuccess">
61
62 {{success}}reviewNotification{{/success}}
63
64 </div>
65 <div class="hidden reviewNotificationError">
66
67 {{error}}reviewNotification{{/error}}
68
69 </div>
70 </div>
71 {{/html}}
72 {{html clean="false"}}
73 </div>
74 <div class="col-xs-5">
75 <div class="widget">
76 <h4>$services.icon.renderHTML('check') How Agnease can help</h4>
77 <ul>
78 <li>XWiki upgrades and long-term maintenance</li>
79 <li>Knowledge bases, intranets, SOP and documentation workflows</li>
80 <li>Custom XWiki applications and integrations</li>
81 <li>LDAP, SSO, OIDC, SAML, and MFA setup</li>
82 <li>Migrations from SharePoint, Confluence, MediaWiki, or file-based documentation</li>
83 <li>Security-aware reviews and platform stabilization</li>
84 </ul>
85 </div>
86 <div class="widget">
87 <h4>$services.icon.renderHTML('right') What happens next?</h4>
88 <ol>
89 <li>Your request is reviewed.</li>
90 <li>You receive a reply with clarifying questions or suggested next steps.</li>
91 <li>If useful, we schedule a short call to discuss scope, timeline, and estimated effort.</li>
92 </ol>
93 </div>
94 </div>
95 </div>
96 {{/html}}
97 {{/velocity}}