summary refs log tree commit diff stats
path: root/client/src/views/NewSmile.vue
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/views/NewSmile.vue')
-rw-r--r--client/src/views/NewSmile.vue30
1 files changed, 29 insertions, 1 deletions
diff --git a/client/src/views/NewSmile.vue b/client/src/views/NewSmile.vue
index 6927007..4a5e700 100644
--- a/client/src/views/NewSmile.vue
+++ b/client/src/views/NewSmile.vue
@@ -1,5 +1,33 @@
 <template>
 <div class="new-smile">
-  <h1>New Smile</h1>
+  <p id="subtitle">Create a new Smile :)</p>
+
+  <div class="card">
+    <div class="grid">
+      <div class="col-12 md:col-6">
+        <p>
+          Filling this form will create a new "Smile Collection" for
+          you, you can add your smiles to the collection using
+          the <strong>private</strong> and your friends can view them
+          using the <strong>public</strong> link.
+        </p>
+      </div>
+      <div class="col-12 md:col-6 flex align-items-center justify-content-center">
+        <div class="p-inputgroup">
+          <Button icon="pi pi-user-plus" />
+          <InputText placeholder="Name" />
+          <Button label="Create" class="p-button-success" />
+        </div>
+      </div>
+    </div>
+  </div>
 </div>
 </template>
+
+<style scoped>
+#subtitle {
+    font-size: 1.5rem;
+    text-align: center;
+    margin: 2rem 0;
+}
+</style>