@local-civics/mgmt-ui 0.1.75 → 0.1.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2705,7 +2705,15 @@ const TrialRegistration = (props) => {
|
|
|
2705
2705
|
const [firstName, setFirstName] = React.useState("");
|
|
2706
2706
|
const [lastName, setLastName] = React.useState("");
|
|
2707
2707
|
const [interests, setInterests] = React.useState({});
|
|
2708
|
-
return /* @__PURE__ */ React.createElement("div", { className: classes.wrapper }, /* @__PURE__ */ React.createElement(SimpleGrid, { maw: 960, ml: "auto", mr: "auto", cols: 1, spacing: 15, breakpoints: [{ maxWidth: "sm", cols: 1 }] }, /* @__PURE__ */ React.createElement(
|
|
2708
|
+
return /* @__PURE__ */ React.createElement("div", { className: classes.wrapper }, /* @__PURE__ */ React.createElement(SimpleGrid, { maw: 960, ml: "auto", mr: "auto", cols: 1, spacing: 15, breakpoints: [{ maxWidth: "sm", cols: 1 }] }, /* @__PURE__ */ React.createElement(Group, { spacing: "sm" }, /* @__PURE__ */ React.createElement(
|
|
2709
|
+
Image,
|
|
2710
|
+
{
|
|
2711
|
+
height: 100,
|
|
2712
|
+
width: "auto",
|
|
2713
|
+
fit: "contain",
|
|
2714
|
+
src: "https://cdn.localcivics.io/brand/l.png"
|
|
2715
|
+
}
|
|
2716
|
+
), /* @__PURE__ */ React.createElement("div", null, /* @__PURE__ */ React.createElement(Title, { className: classes.title }, "Trial Educator"), /* @__PURE__ */ React.createElement(Text, { className: classes.description, mt: "sm" }, "Try out a few of the features we can bring to your classroom. No commitment required."))), /* @__PURE__ */ React.createElement("div", { className: classes.form }, /* @__PURE__ */ React.createElement(Group, { mb: "md", spacing: "md", grow: true }, /* @__PURE__ */ React.createElement(
|
|
2709
2717
|
TextInput,
|
|
2710
2718
|
{
|
|
2711
2719
|
label: "First Name",
|