Created
November 10, 2020 20:47
-
-
Save mplatts/9a4c9faa437689ab0782bb2f5d192628 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="<%= container_css() %> py-10"> | |
<div class="md:grid md:grid-cols-3 md:gap-6"> | |
<div class="md:col-span-1"> | |
<div class="px-4 sm:px-0"> | |
<h3 class="text-lg font-medium leading-6 text-gray-900">Change your name</h3> | |
</div> | |
</div> | |
<div class="mt-5 md:mt-0 md:col-span-2"> | |
<%= form_for @name_changeset, Routes.user_settings_path(@conn, :update_name), fn f -> %> | |
<div class="shadow sm:rounded-md sm:overflow-hidden"> | |
<div class="px-4 py-5 bg-white sm:p-6"> | |
<div class="mb-5"> | |
<%= render AppWeb.FormView, "_text_input.html", [form: f, field: :name] %> | |
</div> | |
<div class="text-sm text-gray-500">Your name currently is: | |
<pre><%= @current_user.name %></b></pre> | |
</div> | |
</div> | |
<div class="px-4 py-3 text-right bg-gray-50 sm:px-6"> | |
<span class="inline-flex rounded-md shadow-sm"> | |
<button type="submit" | |
class="inline-flex justify-center px-4 py-2 text-sm font-medium leading-5 text-white transition duration-150 ease-in-out bg-indigo-600 border border-transparent rounded-md hover:bg-indigo-500 focus:outline-none focus:border-indigo-700 focus:shadow-outline-indigo active:bg-indigo-700"> | |
Save | |
</button> | |
</span> | |
</div> | |
</div> | |
<% end %> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment