forked from getodk/sample-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic.xml
More file actions
22 lines (22 loc) · 776 Bytes
/
Basic.xml
File metadata and controls
22 lines (22 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<h:html xmlns="http://www.w3.org/2002/xforms" xmlns:h="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:jr="http://openrosa.org/javarosa">
<h:head>
<h:title>Basic</h:title>
<model>
<instance>
<!-- submitted data and defaults go here -->
<data id="basic">
<StringData/>
</data>
</instance>
<!-- add properties to the questions, like data types, skip logic, and constraints -->
<bind nodeset="/data/StringData" type="string" />
</model>
</h:head>
<h:body>
<!-- define the questions that the user will fill out -->
<input ref="StringData">
<label>please enter a string</label>
</input>
</h:body>
</h:html>