DataInventory

Details

diff --git a/resources/views/contacts/create.edge b/resources/views/contacts/create.edge
index 1e91809..0af6948 100644
--- a/resources/views/contacts/create.edge
+++ b/resources/views/contacts/create.edge
@@ -6,13 +6,13 @@
   {{ csrfField() }}
   <div class="field">
     <label class="label">First Name</label>
-    <input class="input" type="text" name="first_name" placeholder="Arthur" value="{{ old('first_name', '') }}" />
+    <input class="input" type="text" name="first_name" placeholder="Darth" value="{{ old('first_name', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('first_name'), hasErrorFor('first_name')) }}
   </div>
 
   <div class="field">
     <label class="label">Contact Last Name</label>
-    <input class="input" type="text" name="last_name" placeholder="Fish" value="{{ old('last_name', '') }}" />
+    <input class="input" type="text" name="last_name" placeholder="Vader" value="{{ old('last_name', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('last_name'), hasErrorFor('last_name')) }}
   </div>
 
@@ -30,13 +30,13 @@
 
   <div class="field">
     <label class="label">Contact Email</label>
-    <input class="input" type="text" name="email" placeholder="arthur.fish@oregon.gov" value="{{ old('email', '') }}" />
+    <input class="input" type="text" name="email" placeholder="darth.vader@oregon.gov" value="{{ old('email', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('email'), hasErrorFor('email')) }}
   </div>
 
   <div class="field">
     <label class="label">Contact Phone Number</label>
-    <input class="input" type="text" name="phone" placeholder="Fish" value="{{ old('phone', '') }}" />
+    <input class="input" type="text" name="phone" placeholder="555-555-5555" value="{{ old('phone', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('phone'), hasErrorFor('phone')) }}
   </div>
 
diff --git a/resources/views/contacts/edit.edge b/resources/views/contacts/edit.edge
index e6b2019..05b034e 100644
--- a/resources/views/contacts/edit.edge
+++ b/resources/views/contacts/edit.edge
@@ -6,13 +6,13 @@
   {{ csrfField() }}
   <div class="field">
     <label class="label">First Name</label>
-    <input class="input" type="text" name="first_name" placeholder="Arthur" value="{{ contact.first_name }}" />
+    <input class="input" type="text" name="first_name" placeholder="Darth" value="{{ contact.first_name }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('first_name'), hasErrorFor('first_name')) }}
   </div>
 
   <div class="field">
     <label class="label">Contact Last Name</label>
-    <input class="input" type="text" name="last_name" placeholder="Fish" value="{{ contact.last_name }}" />
+    <input class="input" type="text" name="last_name" placeholder="Vader" value="{{ contact.last_name }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('last_name'), hasErrorFor('last_name')) }}
   </div>
 
@@ -30,13 +30,13 @@
 
   <div class="field">
     <label class="label">Contact Email</label>
-    <input class="input" type="text" name="email" placeholder="arthur.fish@oregon.gov" value="{{ contact.email }}" />
+    <input class="input" type="text" name="email" placeholder="darth.vader@oregon.gov" value="{{ contact.email }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('email'), hasErrorFor('email')) }}
   </div>
 
   <div class="field">
     <label class="label">Contact Phone Number</label>
-    <input class="input" type="text" name="phone" placeholder="Fish" value="{{ contact.phone }}" />
+    <input class="input" type="text" name="phone" placeholder="555-555-5555" value="{{ contact.phone }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('phone'), hasErrorFor('phone')) }}
   </div>
 
diff --git a/resources/views/organization_types/create.edge b/resources/views/organization_types/create.edge
index 40331d3..126063c 100644
--- a/resources/views/organization_types/create.edge
+++ b/resources/views/organization_types/create.edge
@@ -6,7 +6,7 @@
   {{ csrfField() }}
   <div class="field">
     <label class="label">Organization Type</label>
-    <input class="input" type="text" name="type" placeholder="Admin boundaries" value="{{ old('type', '') }}" />
+    <input class="input" type="text" name="type" placeholder="Completed" value="{{ old('type', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('type'), hasErrorFor('type')) }}
   </div>
 
diff --git a/resources/views/organization_types/edit.edge b/resources/views/organization_types/edit.edge
index a6cc2d1..e628530 100644
--- a/resources/views/organization_types/edit.edge
+++ b/resources/views/organization_types/edit.edge
@@ -5,7 +5,7 @@
   {{ csrfField() }}
   <div class="field">
     <label class="label">Organization Type</label>
-    <input class="input" type="text" name="type" placeholder="Admin boundaries" value="{{ type.type }}" />
+    <input class="input" type="text" name="type" placeholder="State Agency" value="{{ type.type }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('type'), hasErrorFor('type')) }}
   </div>
 
diff --git a/resources/views/organizations/create.edge b/resources/views/organizations/create.edge
index 5a1591f..b0b065b 100644
--- a/resources/views/organizations/create.edge
+++ b/resources/views/organizations/create.edge
@@ -6,7 +6,7 @@
   {{ csrfField() }}
   <div class="field">
     <label class="label">Organization Name</label>
-    <input class="input" type="text" name="name" placeholder="State of Oregon" value="{{ old('name', '') }}" />
+    <input class="input" type="text" name="name" placeholder="Geospatial Enterprise Office" value="{{ old('name', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('name'), hasErrorFor('name')) }}
   </div>
 
@@ -24,13 +24,13 @@
 
   <div class="field">
     <label class="label">Organization Email</label>
-    <input class="input" type="text" name="email" placeholder="State of Oregon" value="{{ old('email', '') }}" />
+    <input class="input" type="text" name="email" placeholder="darth.vader@oregon.gov" value="{{ old('email', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('email'), hasErrorFor('email')) }}
   </div>
 
   <div class="field">
     <label class="label">Organization Phone</label>
-    <input class="input" type="text" name="phone" placeholder="State of Oregon" value="{{ old('phone', '') }}" />
+    <input class="input" type="text" name="phone" placeholder="555-555-5555" value="{{ old('phone', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('phone'), hasErrorFor('phone')) }}
   </div>
 
diff --git a/resources/views/organizations/edit.edge b/resources/views/organizations/edit.edge
index 59f2cd9..6fde3e2 100644
--- a/resources/views/organizations/edit.edge
+++ b/resources/views/organizations/edit.edge
@@ -6,7 +6,7 @@
   {{ csrfField() }}
   <div class="field">
     <label class="label">Organization Name</label>
-    <input class="input" type="text" name="name" placeholder="State of Oregon" value="{{ organization.name }}" />
+    <input class="input" type="text" name="name" placeholder="Geospatial Enterprise Office" value="{{ organization.name }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('name'), hasErrorFor('name')) }}
   </div>
 
@@ -24,13 +24,13 @@
 
   <div class="field">
     <label class="label">Organization Email</label>
-    <input class="input" type="text" name="email" placeholder="State of Oregon" value="{{ organization.email }}" />
+    <input class="input" type="text" name="email" placeholder="darth.vader@oregon.gov" value="{{ organization.email }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('email'), hasErrorFor('email')) }}
   </div>
 
   <div class="field">
     <label class="label">Organization Phone</label>
-    <input class="input" type="text" name="phone" placeholder="State of Oregon" value="{{ organization.phone }}" />
+    <input class="input" type="text" name="phone" placeholder="555-555-5555" value="{{ organization.phone }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('phone'), hasErrorFor('phone')) }}
   </div>
 
diff --git a/resources/views/status/create.edge b/resources/views/status/create.edge
index af4ccc8..8aea1a9 100644
--- a/resources/views/status/create.edge
+++ b/resources/views/status/create.edge
@@ -6,7 +6,7 @@
   {{ csrfField() }}
   <div class="field">
     <label class="label">Status Title</label>
-    <input class="input" type="text" name="status" placeholder="Admin boundaries" value="{{ old('status', '') }}" />
+    <input class="input" type="text" name="status" placeholder="Completed" value="{{ old('status', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('status'), hasErrorFor('status')) }}
   </div>
 
diff --git a/resources/views/submissions/create.edge b/resources/views/submissions/create.edge
index 008c07f..a4461c7 100644
--- a/resources/views/submissions/create.edge
+++ b/resources/views/submissions/create.edge
@@ -6,7 +6,7 @@
   {{ csrfField() }}
   <div class="field">
     <label class="label">Name of Submission</label>
-    <input class="input" type="text" name="name" placeholder="Buildings, Jan 2019" value="{{ old('name', '') }}" />
+    <input class="input" type="text" name="name" placeholder="Enterprise Zones, Jan 2019" value="{{ old('name', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('name'), hasErrorFor('name')) }}
   </div>
 
@@ -54,19 +54,19 @@
 
   <div class="field">
     <label class="label">Download File Location</label>
-    <input class="input" type="text" name="download_file_location" placeholder="S:/shared/gis/adminbnds/submission.zip" value="{{ old('download_file_location', '') }}" />
+    <input class="input" type="text" name="download_file_location" placeholder="ftp://ftp.gis.oregon.gov/adminbound/EnterpriseZones2019.zip" value="{{ old('download_file_location', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('download_file_location'), hasErrorFor('download_file_location')) }}
   </div>
 
   <div class="field">
     <label class="label">ArcGIS Server Service Location</label>
-    <input class="input" type="text" name="service_location_ags" placeholder="S:/shared/gis/adminbnds/submission.zip" value="{{ old('service_location_ags', '') }}" />
+    <input class="input" type="text" name="service_location_ags" placeholder="https://navigator.state.or.us/arcgis/rest/services/Projects/Prep_TransCams/MapServer/0" value="{{ old('service_location_ags', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('service_location_ags'), hasErrorFor('service_location_ags')) }}
   </div>
 
   <div class="field">
-    <label class="label">ArcGIS Online Service Location</label>
-    <input class="input" type="text" name="service_location_agol" placeholder="S:/shared/gis/adminbnds/submission.zip" value="{{ old('service_location_agol', '') }}" />
+    <label class="label">ArcGIS Online Service ItemID</label>
+    <input class="input" type="text" name="service_location_agol" placeholder="41d7a22bc09942e9ba0cee1f5746e02c" value="{{ old('service_location_agol', '') }}" />
     {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('service_location_agol'), hasErrorFor('service_location_agol')) }}
   </div>