summary refs log tree commit diff stats
path: root/client/src/views/NewSmile.vue
blob: 4a5e700f72569386bd5efefc177669d3f201f079 (plain) (blame)
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
<template>
<div class="new-smile">
  <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>